diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..2ca3795 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,40 @@ +# Automatically build the project and run any configured tests for every push +# and submitted pull request. This can help catch issues that only occur on +# certain platforms or Java versions, and provides a first line of defence +# against bad commits. + +name: build +on: [pull_request, push] + +jobs: + build: + strategy: + matrix: + # Use these Java versions + java: [ + 17, # Current Java LTS & minimum supported by Minecraft + ] + # and run on both Linux and Windows + os: [ubuntu-22.04, windows-2022] + runs-on: ${{ matrix.os }} + steps: + - name: checkout repository + uses: actions/checkout@v3 + - name: validate gradle wrapper + uses: gradle/wrapper-validation-action@v1 + - name: setup jdk ${{ matrix.java }} + uses: actions/setup-java@v3 + with: + java-version: ${{ matrix.java }} + distribution: 'microsoft' + - name: make gradle wrapper executable + if: ${{ runner.os != 'Windows' }} + run: chmod +x ./gradlew + - name: build + run: ./gradlew build + - name: capture build artifacts + if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS + uses: actions/upload-artifact@v3 + with: + name: Artifacts + path: build/libs/ \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c476faf --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# gradle + +.gradle/ +build/ +out/ +classes/ + +# eclipse + +*.launch + +# idea + +.idea/ +*.iml +*.ipr +*.iws + +# vscode + +.settings/ +.vscode/ +bin/ +.classpath +.project + +# macos + +*.DS_Store + +# fabric + +run/ + +# java + +hs_err_*.log +replay_*.log +*.hprof +*.jfr diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0a04128 --- /dev/null +++ b/LICENSE @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. diff --git a/README.md b/README.md new file mode 100644 index 0000000..edaeaff --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# infinity-cave + +Infinity Cave adds a seemingly infinite cave system beneath the bedrock layer increasing the bedrock layer from -64 to -128. With this comes many new challenges and an overall different way of experiencing PvE. + +This is a custom "Fork" (not an actual fork because they don't have their own code in their repo yet) of [Frozeh's Infinity Cave](https://github.com/Frozeh/infinity-cave) which is GNU LGPL as seen [here](https://www.curseforge.com/minecraft/mc-mods/infinity-cave#license) diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..eed33fd --- /dev/null +++ b/build.gradle @@ -0,0 +1,91 @@ +plugins { + id 'fabric-loom' version '1.3-SNAPSHOT' + id 'maven-publish' +} + +version = project.mod_version +group = project.maven_group + +base { + archivesName = project.archives_base_name +} + +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. +} + +loom { + splitEnvironmentSourceSets() + + mods { + "infinity-cave" { + sourceSet sourceSets.main + sourceSet sourceSets.client + } + } + +} + +dependencies { + // To change the versions see the gradle.properties file + minecraft "com.mojang:minecraft:${project.minecraft_version}" + mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" + modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" + + // Fabric API. This is technically optional, but you probably want it anyway. + modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" + + // Uncomment the following line to enable the deprecated Fabric API modules. + // These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time. + + // modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}" +} + +processResources { + inputs.property "version", project.version + + filesMatching("fabric.mod.json") { + expand "version": project.version + } +} + +tasks.withType(JavaCompile).configureEach { + it.options.release = 17 +} + +java { + // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task + // if it is present. + // If you remove this line, sources will not be generated. + withSourcesJar() + + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 +} + +jar { + from("LICENSE") { + rename { "${it}_${project.base.archivesName.get()}"} + } +} + +// configure the maven publication +publishing { + publications { + mavenJava(MavenPublication) { + from components.java + } + } + + // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. + repositories { + // Add repositories to publish to here. + // Notice: This block does NOT have the same function as the block in the top level. + // The repositories here will be used for publishing your artifact, not for + // retrieving dependencies. + } +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..c682cd1 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,17 @@ +# Done to increase the memory available to gradle. +org.gradle.jvmargs=-Xmx1G +org.gradle.parallel=true + +# Fabric Properties +# check these on https://fabricmc.net/develop +minecraft_version=1.20.1 +yarn_mappings=1.20.1+build.9 +loader_version=0.14.21 + +# Mod Properties +mod_version=1.0.0 +maven_group=com.oitsjustjose.infinitycavefabric +archives_base_name=infinity-cave-lce + +# Dependencies +fabric_version=0.85.0+1.20.1 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..033e24c Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..62f495d --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..fcb6fca --- /dev/null +++ b/gradlew @@ -0,0 +1,248 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# 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/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + 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=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=SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# 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, 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. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..93e3f59 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +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% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +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. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +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. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..75c4d72 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,10 @@ +pluginManagement { + repositories { + maven { + name = 'Fabric' + url = 'https://maven.fabricmc.net/' + } + mavenCentral() + gradlePluginPortal() + } +} \ No newline at end of file diff --git a/src/main/java/com/oitsjustjose/infinitycavefabric/InfinityCaveFabric.java b/src/main/java/com/oitsjustjose/infinitycavefabric/InfinityCaveFabric.java new file mode 100644 index 0000000..a6af5b3 --- /dev/null +++ b/src/main/java/com/oitsjustjose/infinitycavefabric/InfinityCaveFabric.java @@ -0,0 +1,23 @@ +package com.oitsjustjose.infinitycavefabric; + +import net.fabricmc.api.ModInitializer; +import net.fabricmc.fabric.api.resource.ResourceManagerHelper; +import net.fabricmc.fabric.api.resource.ResourcePackActivationType; +import net.fabricmc.loader.api.FabricLoader; +import net.minecraft.text.Text; +import net.minecraft.util.Identifier; + +public class InfinityCaveFabric implements ModInitializer { + public void onInitialize() { + String packId = FabricLoader.getInstance().isModLoaded("terralith") ? "infinity-cave-terralith" : "infinity-cave"; + FabricLoader + .getInstance() + .getModContainer("infinity-cave") + .ifPresent(modContainer -> ResourceManagerHelper.registerBuiltinResourcePack( + new Identifier("infinity-cave", packId.toLowerCase()), + modContainer, + Text.literal(packId), + ResourcePackActivationType.DEFAULT_ENABLED) + ); + } +} diff --git a/src/main/resources/assets/infinity-cave/icon.png b/src/main/resources/assets/infinity-cave/icon.png new file mode 100644 index 0000000..9d04fd7 Binary files /dev/null and b/src/main/resources/assets/infinity-cave/icon.png differ diff --git a/src/main/resources/assets/minecraft/models/item/armor_stand.json b/src/main/resources/assets/minecraft/models/item/armor_stand.json new file mode 100644 index 0000000..12f522b --- /dev/null +++ b/src/main/resources/assets/minecraft/models/item/armor_stand.json @@ -0,0 +1,15 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/armor_stand" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "utils/light_emblem" + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/item/bow.json b/src/main/resources/assets/minecraft/models/item/bow.json new file mode 100644 index 0000000..5bfcc4e --- /dev/null +++ b/src/main/resources/assets/minecraft/models/item/bow.json @@ -0,0 +1,128 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/bow" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ + -80, + 260, + -40 + ], + "translation": [ + -1, + -2, + 2.5 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + -80, + -280, + 40 + ], + "translation": [ + -1, + -2, + 2.5 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + -90, + 25 + ], + "translation": [ + 1.13, + 3.2, + 1.13 + ], + "scale": [ + 0.68, + 0.68, + 0.68 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 0, + 90, + -25 + ], + "translation": [ + 1.13, + 3.2, + 1.13 + ], + "scale": [ + 0.68, + 0.68, + 0.68 + ] + } + }, + "overrides": [ + { + "predicate": { + "pulling": 1 + }, + "model": "minecraft:item/bow_pulling_0" + }, + { + "predicate": { + "pulling": 1, + "pull": 0.65 + }, + "model": "minecraft:item/bow_pulling_1" + }, + { + "predicate": { + "pulling": 1, + "pull": 0.9 + }, + "model": "minecraft:item/bow_pulling_2" + }, + { + "predicate": { + "custom_model_data": 1 + }, + "model": "weapons/sonic_bow" + }, + { + "predicate": { + "custom_model_data": 1, + "pulling": 1 + }, + "model": "weapons/sonic_bow_pull" + }, + { + "predicate": { + "custom_model_data": 1, + "pulling": 1, + "pull": 0.65 + }, + "model": "weapons/sonic_bow_pull" + }, + { + "predicate": { + "custom_model_data": 1, + "pulling": 1, + "pull": 0.9 + }, + "model": "weapons/sonic_bow_pull2" + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/item/brush.json b/src/main/resources/assets/minecraft/models/item/brush.json new file mode 100644 index 0000000..6e3263c --- /dev/null +++ b/src/main/resources/assets/minecraft/models/item/brush.json @@ -0,0 +1,14 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/brush" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "weapons/molten_hammer" + } + ] +} diff --git a/src/main/resources/assets/minecraft/models/item/crossbow.json b/src/main/resources/assets/minecraft/models/item/crossbow.json new file mode 100644 index 0000000..7bd31e4 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/item/crossbow.json @@ -0,0 +1,155 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/crossbow_standby" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ + -90, + 0, + -60 + ], + "translation": [ + 2, + 0.1, + -3 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + -90, + 0, + 30 + ], + "translation": [ + 2, + 0.1, + -3 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "firstperson_righthand": { + "rotation": [ + -90, + 0, + -55 + ], + "translation": [ + 1.13, + 3.2, + 1.13 + ], + "scale": [ + 0.68, + 0.68, + 0.68 + ] + }, + "firstperson_lefthand": { + "rotation": [ + -90, + 0, + 35 + ], + "translation": [ + 1.13, + 3.2, + 1.13 + ], + "scale": [ + 0.68, + 0.68, + 0.68 + ] + } + }, + "overrides": [ + { + "predicate": { + "pulling": 1 + }, + "model": "item/crossbow_pulling_0" + }, + { + "predicate": { + "pulling": 1, + "pull": 0.58 + }, + "model": "item/crossbow_pulling_1" + }, + { + "predicate": { + "pulling": 1, + "pull": 1.0 + }, + "model": "item/crossbow_pulling_2" + }, + { + "predicate": { + "charged": 1 + }, + "model": "item/crossbow_arrow" + }, + { + "predicate": { + "charged": 1, + "firework": 1 + }, + "model": "item/crossbow_firework" + }, + { + "predicate": { + "custom_model_data": 1 + }, + "model": "weapons/icicle_crossbow" + }, + { + "predicate": { + "pulling": 1, + "custom_model_data": 1 + }, + "model": "minecraft:weapons/icicle_crossbow_pulling_0" + }, + { + "predicate": { + "pulling": 1, + "pull": 0.58, + "custom_model_data": 1 + }, + "model": "minecraft:weapons/icicle_crossbow_pulling_0" + }, + { + "predicate": { + "pulling": 1, + "pull": 1, + "custom_model_data": 1 + }, + "model": "minecraft:weapons/icicle_crossbow_pulling_0" + }, + { + "predicate": { + "charged": 1, + "custom_model_data": 1 + }, + "model": "minecraft:weapons/icicle_crossbow_charged" + }, + { + "predicate": { + "charged": 1, + "firework": 1, + "custom_model_data": 1 + }, + "model": "minecraft:weapons/icicle_crossbow_charged" + } + ] +} diff --git a/src/main/resources/assets/minecraft/models/item/ender_eye.json b/src/main/resources/assets/minecraft/models/item/ender_eye.json new file mode 100644 index 0000000..b4d32a6 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/item/ender_eye.json @@ -0,0 +1,57 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/ender_eye" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "utils/enchantlet_tier_1" + }, + { + "predicate": { + "custom_model_data": 2 + }, + "model": "utils/enchantlet_tier_2" + }, + { + "predicate": { + "custom_model_data": 3 + }, + "model": "utils/enchantlet_tier_3" + }, + { + "predicate": { + "custom_model_data": 4 + }, + "model": "utils/enchantlet_tier_4" + }, + { + "predicate": { + "custom_model_data": 5 + }, + "model": "utils/enchantlet_tier_5" + }, + { + "predicate": { + "custom_model_data": 6 + }, + "model": "utils/fireball" + }, + { + "predicate": { + "custom_model_data": 7 + }, + "model": "utils/ice_spark" + }, + { + "predicate": { + "custom_model_data": 8 + }, + "model": "utils/magic_repair" + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/item/netherite_axe.json b/src/main/resources/assets/minecraft/models/item/netherite_axe.json new file mode 100644 index 0000000..3c0965c --- /dev/null +++ b/src/main/resources/assets/minecraft/models/item/netherite_axe.json @@ -0,0 +1,14 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_axe" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "weapons/steel_battleaxe" + } + ] +} diff --git a/src/main/resources/assets/minecraft/models/item/netherite_hoe.json b/src/main/resources/assets/minecraft/models/item/netherite_hoe.json new file mode 100644 index 0000000..ad001a5 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/item/netherite_hoe.json @@ -0,0 +1,14 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_hoe" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "weapons/bastion_piercer" + } + ] +} diff --git a/src/main/resources/assets/minecraft/models/item/netherite_sword.json b/src/main/resources/assets/minecraft/models/item/netherite_sword.json new file mode 100644 index 0000000..cdefef9 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/item/netherite_sword.json @@ -0,0 +1,14 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/netherite_sword" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "weapons/amethyst_sword" + } + ] +} diff --git a/src/main/resources/assets/minecraft/models/item/shield.json b/src/main/resources/assets/minecraft/models/item/shield.json new file mode 100644 index 0000000..32dc447 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/item/shield.json @@ -0,0 +1,162 @@ +{ + "parent": "minecraft:builtin/entity", + "gui_light": "front", + "textures": { + "particle": "minecraft:block/dark_oak_planks" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 10, + 6, + -4 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 10, + 6, + 12 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 180, + 5 + ], + "translation": [ + -10, + 2, + -10 + ], + "scale": [ + 1.25, + 1.25, + 1.25 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 0, + 180, + 5 + ], + "translation": [ + 10, + 0, + -10 + ], + "scale": [ + 1.25, + 1.25, + 1.25 + ] + }, + "gui": { + "rotation": [ + 15, + -25, + -5 + ], + "translation": [ + 2, + 3, + 0 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] + }, + "fixed": { + "rotation": [ + 0, + 180, + 0 + ], + "translation": [ + -4.5, + 4.5, + -5 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "ground": { + "rotation": [ + 0, + 0, + 0 + ], + "translation": [ + 2, + 4, + 2 + ], + "scale": [ + 0.25, + 0.25, + 0.25 + ] + } + }, + "overrides": [ + { + "predicate": { + "blocking": 1 + }, + "model": "minecraft:item/shield_blocking" + }, + { + "predicate": { + "custom_model_data": 1 + }, + "model": "minecraft:weapons/torpedo_harpoon" + }, + { + "predicate": { + "blocking": 1, + "custom_model_data": 1 + }, + "model": "minecraft:weapons/torpedo_harpoon_charge" + }, + { + "predicate": { + "custom_model_data": 2 + }, + "model": "minecraft:weapons/acid_shield" + }, + { + "predicate": { + "blocking": 1, + "custom_model_data": 2 + }, + "model": "minecraft:weapons/acid_shield_blocking" + } + ] +} diff --git a/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_1.json b/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_1.json new file mode 100644 index 0000000..a1224e8 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_1.json @@ -0,0 +1,88 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [8, 8], + "textures": { + "0": "item/enchantlet_tier_1", + "1": "item/enchantlet_back", + "particle": "item/enchantlet_tier_1" + }, + "elements": [ + { + "from": [4.2, 1, 8.5], + "to": [9, 9, 9], + "faces": { + "north": {"uv": [0, 0, 6, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 1, 16], "texture": "#0"}, + "south": {"uv": [6, 0, 12, 8], "texture": "#0"}, + "west": {"uv": [1, 8, 2, 16], "texture": "#0"}, + "up": {"uv": [8, 9, 2, 8], "texture": "#0"}, + "down": {"uv": [14, 8, 8, 9], "texture": "#0"} + } + }, + { + "from": [2.2, 1, 8.5], + "to": [4.2, 5, 9], + "faces": { + "north": {"uv": [0, 0, 4, 8], "texture": "#1"}, + "east": {"uv": [0, 8, 2, 16], "texture": "#1"}, + "south": {"uv": [4, 0, 8, 8], "texture": "#1"}, + "west": {"uv": [8, 0, 10, 8], "texture": "#1"}, + "up": {"uv": [14, 2, 10, 0], "texture": "#1"}, + "down": {"uv": [14, 2, 10, 4], "texture": "#1"} + } + }, + { + "from": [3.2, 5, 8.5], + "to": [4.2, 9, 9], + "faces": { + "north": {"uv": [2, 8, 4, 16], "texture": "#1"}, + "east": {"uv": [4, 8, 6, 16], "texture": "#1"}, + "south": {"uv": [6, 8, 8, 16], "texture": "#1"}, + "west": {"uv": [8, 8, 10, 16], "texture": "#1"}, + "up": {"uv": [12, 6, 10, 4], "texture": "#1"}, + "down": {"uv": [12, 6, 10, 8], "texture": "#1"} + } + }, + { + "from": [3.2, 9, 8.5], + "to": [6.2, 9.4, 9], + "faces": { + "north": {"uv": [2, 8, 4, 16], "texture": "#1"}, + "east": {"uv": [4, 8, 6, 16], "texture": "#1"}, + "south": {"uv": [6, 8, 8, 16], "texture": "#1"}, + "west": {"uv": [8, 8, 10, 16], "texture": "#1"}, + "up": {"uv": [12, 6, 10, 4], "texture": "#1"}, + "down": {"uv": [12, 6, 10, 8], "texture": "#1"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [2.5, 5.25, 0] + }, + "thirdperson_lefthand": { + "translation": [-2.5, 5.25, 0] + }, + "firstperson_righthand": { + "translation": [1.75, 5.75, 0] + }, + "firstperson_lefthand": { + "translation": [-2, 5.75, 0] + }, + "ground": { + "translation": [0, 3.5, 0] + }, + "gui": { + "translation": [4.75, 5.75, 0], + "scale": [2, 2, 2] + }, + "head": { + "translation": [0, 4.25, 0] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [-5, 5.75, 0], + "scale": [2, 2, 2] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_2.json b/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_2.json new file mode 100644 index 0000000..7d2c5d6 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_2.json @@ -0,0 +1,88 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [8, 8], + "textures": { + "2": "item/enchantlet_tier_1", + "3": "item/enchantlet_back_2", + "particle": "item/enchantlet_tier_1" + }, + "elements": [ + { + "from": [4.2, 1, 8.5], + "to": [9, 9, 9], + "faces": { + "north": {"uv": [0, 0, 6, 8], "texture": "#2"}, + "east": {"uv": [0, 8, 1, 16], "texture": "#2"}, + "south": {"uv": [6, 0, 12, 8], "texture": "#2"}, + "west": {"uv": [1, 8, 2, 16], "texture": "#2"}, + "up": {"uv": [8, 9, 2, 8], "texture": "#2"}, + "down": {"uv": [14, 8, 8, 9], "texture": "#2"} + } + }, + { + "from": [2.2, 1, 8.5], + "to": [4.2, 5, 9], + "faces": { + "north": {"uv": [0, 0, 4, 8], "texture": "#3"}, + "east": {"uv": [0, 8, 2, 16], "texture": "#3"}, + "south": {"uv": [4, 0, 8, 8], "texture": "#3"}, + "west": {"uv": [8, 0, 10, 8], "texture": "#3"}, + "up": {"uv": [14, 2, 10, 0], "texture": "#3"}, + "down": {"uv": [14, 2, 10, 4], "texture": "#3"} + } + }, + { + "from": [3.2, 5, 8.5], + "to": [4.2, 9, 9], + "faces": { + "north": {"uv": [2, 8, 4, 16], "texture": "#3"}, + "east": {"uv": [4, 8, 6, 16], "texture": "#3"}, + "south": {"uv": [6, 8, 8, 16], "texture": "#3"}, + "west": {"uv": [8, 8, 10, 16], "texture": "#3"}, + "up": {"uv": [12, 6, 10, 4], "texture": "#3"}, + "down": {"uv": [12, 6, 10, 8], "texture": "#3"} + } + }, + { + "from": [3.2, 9, 8.5], + "to": [6.2, 9.4, 9], + "faces": { + "north": {"uv": [2, 8, 4, 16], "texture": "#3"}, + "east": {"uv": [4, 8, 6, 16], "texture": "#3"}, + "south": {"uv": [6, 8, 8, 16], "texture": "#3"}, + "west": {"uv": [8, 8, 10, 16], "texture": "#3"}, + "up": {"uv": [12, 6, 10, 4], "texture": "#3"}, + "down": {"uv": [12, 6, 10, 8], "texture": "#3"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [2.5, 5.25, 0] + }, + "thirdperson_lefthand": { + "translation": [-2.5, 5.25, 0] + }, + "firstperson_righthand": { + "translation": [1.75, 5.75, 0] + }, + "firstperson_lefthand": { + "translation": [-2, 5.75, 0] + }, + "ground": { + "translation": [0, 3.5, 0] + }, + "gui": { + "translation": [4.75, 5.75, 0], + "scale": [2, 2, 2] + }, + "head": { + "translation": [0, 4.25, 0] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [-5, 5.75, 0], + "scale": [2, 2, 2] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_3.json b/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_3.json new file mode 100644 index 0000000..018ea68 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_3.json @@ -0,0 +1,88 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [8, 8], + "textures": { + "1": "item/enchantlet_tier_1", + "3": "item/enchantlet_back_3", + "particle": "item/enchantlet_tier_1" + }, + "elements": [ + { + "from": [4.2, 1, 8.5], + "to": [9, 9, 9], + "faces": { + "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, + "east": {"uv": [0, 8, 1, 16], "texture": "#1"}, + "south": {"uv": [6, 0, 12, 8], "texture": "#1"}, + "west": {"uv": [1, 8, 2, 16], "texture": "#1"}, + "up": {"uv": [8, 9, 2, 8], "texture": "#1"}, + "down": {"uv": [14, 8, 8, 9], "texture": "#1"} + } + }, + { + "from": [2.2, 1, 8.5], + "to": [4.2, 5, 9], + "faces": { + "north": {"uv": [0, 0, 4, 8], "texture": "#3"}, + "east": {"uv": [0, 8, 2, 16], "texture": "#3"}, + "south": {"uv": [4, 0, 8, 8], "texture": "#3"}, + "west": {"uv": [8, 0, 10, 8], "texture": "#3"}, + "up": {"uv": [14, 2, 10, 0], "texture": "#3"}, + "down": {"uv": [14, 2, 10, 4], "texture": "#3"} + } + }, + { + "from": [3.2, 5, 8.5], + "to": [4.2, 9, 9], + "faces": { + "north": {"uv": [2, 8, 4, 16], "texture": "#3"}, + "east": {"uv": [4, 8, 6, 16], "texture": "#3"}, + "south": {"uv": [6, 8, 8, 16], "texture": "#3"}, + "west": {"uv": [8, 8, 10, 16], "texture": "#3"}, + "up": {"uv": [12, 6, 10, 4], "texture": "#3"}, + "down": {"uv": [12, 6, 10, 8], "texture": "#3"} + } + }, + { + "from": [3.2, 9, 8.5], + "to": [6.2, 9.4, 9], + "faces": { + "north": {"uv": [2, 8, 4, 16], "texture": "#3"}, + "east": {"uv": [4, 8, 6, 16], "texture": "#3"}, + "south": {"uv": [6, 8, 8, 16], "texture": "#3"}, + "west": {"uv": [8, 8, 10, 16], "texture": "#3"}, + "up": {"uv": [12, 6, 10, 4], "texture": "#3"}, + "down": {"uv": [12, 6, 10, 8], "texture": "#3"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [2.5, 5.25, 0] + }, + "thirdperson_lefthand": { + "translation": [-2.5, 5.25, 0] + }, + "firstperson_righthand": { + "translation": [1.75, 5.75, 0] + }, + "firstperson_lefthand": { + "translation": [-2, 5.75, 0] + }, + "ground": { + "translation": [0, 3.5, 0] + }, + "gui": { + "translation": [4.75, 5.75, 0], + "scale": [2, 2, 2] + }, + "head": { + "translation": [0, 4.25, 0] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [-5, 5.75, 0], + "scale": [2, 2, 2] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_4.json b/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_4.json new file mode 100644 index 0000000..51d9d1b --- /dev/null +++ b/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_4.json @@ -0,0 +1,88 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [8, 8], + "textures": { + "1": "item/enchantlet_tier_1", + "3": "item/enchantlet_back_4", + "particle": "item/enchantlet_tier_1" + }, + "elements": [ + { + "from": [4.2, 1, 8.5], + "to": [9, 9, 9], + "faces": { + "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, + "east": {"uv": [0, 8, 1, 16], "texture": "#1"}, + "south": {"uv": [6, 0, 12, 8], "texture": "#1"}, + "west": {"uv": [1, 8, 2, 16], "texture": "#1"}, + "up": {"uv": [8, 9, 2, 8], "texture": "#1"}, + "down": {"uv": [14, 8, 8, 9], "texture": "#1"} + } + }, + { + "from": [2.2, 1, 8.5], + "to": [4.2, 5, 9], + "faces": { + "north": {"uv": [0, 0, 4, 8], "texture": "#3"}, + "east": {"uv": [0, 8, 2, 16], "texture": "#3"}, + "south": {"uv": [4, 0, 8, 8], "texture": "#3"}, + "west": {"uv": [8, 0, 10, 8], "texture": "#3"}, + "up": {"uv": [14, 2, 10, 0], "texture": "#3"}, + "down": {"uv": [14, 2, 10, 4], "texture": "#3"} + } + }, + { + "from": [3.2, 5, 8.5], + "to": [4.2, 9, 9], + "faces": { + "north": {"uv": [2, 8, 4, 16], "texture": "#3"}, + "east": {"uv": [4, 8, 6, 16], "texture": "#3"}, + "south": {"uv": [6, 8, 8, 16], "texture": "#3"}, + "west": {"uv": [8, 8, 10, 16], "texture": "#3"}, + "up": {"uv": [12, 6, 10, 4], "texture": "#3"}, + "down": {"uv": [12, 6, 10, 8], "texture": "#3"} + } + }, + { + "from": [3.2, 9, 8.5], + "to": [6.2, 9.4, 9], + "faces": { + "north": {"uv": [2, 8, 4, 16], "texture": "#3"}, + "east": {"uv": [4, 8, 6, 16], "texture": "#3"}, + "south": {"uv": [6, 8, 8, 16], "texture": "#3"}, + "west": {"uv": [8, 8, 10, 16], "texture": "#3"}, + "up": {"uv": [12, 6, 10, 4], "texture": "#3"}, + "down": {"uv": [12, 6, 10, 8], "texture": "#3"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [2.5, 5.25, 0] + }, + "thirdperson_lefthand": { + "translation": [-2.5, 5.25, 0] + }, + "firstperson_righthand": { + "translation": [1.75, 5.75, 0] + }, + "firstperson_lefthand": { + "translation": [-2, 5.75, 0] + }, + "ground": { + "translation": [0, 3.5, 0] + }, + "gui": { + "translation": [4.75, 5.75, 0], + "scale": [2, 2, 2] + }, + "head": { + "translation": [0, 4.25, 0] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [-5, 5.75, 0], + "scale": [2, 2, 2] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_5.json b/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_5.json new file mode 100644 index 0000000..95ade17 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/utils/enchantlet_tier_5.json @@ -0,0 +1,113 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [8, 8], + "textures": { + "1": "item/enchantlet_tier_1", + "2": "item/tier_5", + "4": "item/enchantlet_back_5", + "particle": "item/enchantlet_tier_1" + }, + "elements": [ + { + "from": [4.2, 1, 8.5], + "to": [9, 9, 9], + "faces": { + "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, + "east": {"uv": [0, 8, 1, 16], "texture": "#1"}, + "south": {"uv": [6, 0, 12, 8], "texture": "#1"}, + "west": {"uv": [1, 8, 2, 16], "texture": "#1"}, + "up": {"uv": [8, 9, 2, 8], "texture": "#1"}, + "down": {"uv": [14, 8, 8, 9], "texture": "#1"} + } + }, + { + "from": [2.2, 1, 8.5], + "to": [4.2, 5, 9], + "faces": { + "north": {"uv": [0, 0, 4, 8], "texture": "#4"}, + "east": {"uv": [0, 8, 2, 16], "texture": "#4"}, + "south": {"uv": [4, 0, 8, 8], "texture": "#4"}, + "west": {"uv": [8, 0, 10, 8], "texture": "#4"}, + "up": {"uv": [14, 2, 10, 0], "texture": "#4"}, + "down": {"uv": [14, 2, 10, 4], "texture": "#4"} + } + }, + { + "from": [3.2, 5, 8.5], + "to": [4.2, 9, 9], + "faces": { + "north": {"uv": [2, 8, 4, 16], "texture": "#4"}, + "east": {"uv": [4, 8, 6, 16], "texture": "#4"}, + "south": {"uv": [6, 8, 8, 16], "texture": "#4"}, + "west": {"uv": [8, 8, 10, 16], "texture": "#4"}, + "up": {"uv": [12, 6, 10, 4], "texture": "#4"}, + "down": {"uv": [12, 6, 10, 8], "texture": "#4"} + } + }, + { + "from": [3.2, 9, 8.5], + "to": [6.2, 9.4, 9], + "faces": { + "north": {"uv": [2, 8, 4, 16], "texture": "#4"}, + "east": {"uv": [4, 8, 6, 16], "texture": "#4"}, + "south": {"uv": [6, 8, 8, 16], "texture": "#4"}, + "west": {"uv": [8, 8, 10, 16], "texture": "#4"}, + "up": {"uv": [12, 6, 10, 4], "texture": "#4"}, + "down": {"uv": [12, 6, 10, 8], "texture": "#4"} + } + }, + { + "from": [8, 2, 8.6], + "to": [10.1, 4.5, 8.9], + "faces": { + "north": {"uv": [0, 0, 4, 5], "texture": "#2"}, + "east": {"uv": [0, 6, 1, 11], "texture": "#2"}, + "south": {"uv": [4, 0, 8, 5], "texture": "#2"}, + "west": {"uv": [2, 6, 3, 11], "texture": "#2"}, + "up": {"uv": [8, 7, 4, 6], "texture": "#2"}, + "down": {"uv": [12, 0, 8, 1], "texture": "#2"} + } + }, + { + "from": [8, 7, 8.6], + "to": [9.7, 9.5, 8.9], + "faces": { + "north": {"uv": [0, 0, 3.4, 5], "texture": "#2"}, + "east": {"uv": [0, 0, 0.6, 5], "texture": "#2"}, + "south": {"uv": [0, 0, 3.4, 5], "texture": "#2"}, + "west": {"uv": [0, 0, 0.6, 5], "texture": "#2"}, + "up": {"uv": [0, 0, 3.4, 0.6], "texture": "#2"}, + "down": {"uv": [0, 0, 3.4, 0.6], "texture": "#2"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [2.5, 5.25, 0] + }, + "thirdperson_lefthand": { + "translation": [-2.5, 5.25, 0] + }, + "firstperson_righthand": { + "translation": [1.75, 5.75, 0] + }, + "firstperson_lefthand": { + "translation": [-2, 5.75, 0] + }, + "ground": { + "translation": [0, 3.5, 0] + }, + "gui": { + "translation": [4.75, 5.75, 0], + "scale": [2, 2, 2] + }, + "head": { + "translation": [0, 4.25, 0] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [-5, 5.75, 0], + "scale": [2, 2, 2] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/utils/fireball.json b/src/main/resources/assets/minecraft/models/utils/fireball.json new file mode 100644 index 0000000..355a2c1 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/utils/fireball.json @@ -0,0 +1,90 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "item/fire_charge", + "particle": "item/fire_charge" + }, + "elements": [ + { + "from": [6.25, 1.25, 5.25], + "to": [10.75, 4.75, 9.75], + "faces": { + "north": {"uv": [5, 4, 10, 8], "texture": "#0"}, + "east": {"uv": [5, 3, 10, 7], "texture": "#0"}, + "south": {"uv": [5, 4, 10, 8], "texture": "#0"}, + "west": {"uv": [6, 4, 11, 8], "texture": "#0"}, + "up": {"uv": [6, 5, 11, 10], "texture": "#0"}, + "down": {"uv": [6, 5, 11, 10], "texture": "#0"} + } + }, + { + "from": [6.5, 0.7, 5.5], + "to": [10.5, 5.3, 9.5], + "faces": { + "north": {"uv": [5, 4, 10, 9.6], "texture": "#0"}, + "east": {"uv": [5, 3, 10, 8.6], "texture": "#0"}, + "south": {"uv": [5, 4, 10, 9.6], "texture": "#0"}, + "west": {"uv": [6, 4, 11, 9.6], "texture": "#0"}, + "up": {"uv": [6, 5, 11, 10], "texture": "#0"}, + "down": {"uv": [6, 5, 11, 10], "texture": "#0"} + } + }, + { + "from": [6.9, 0.3, 5.9], + "to": [10.1, 5.7, 9.1], + "faces": { + "north": {"uv": [5, 4, 10, 11.1], "texture": "#0"}, + "east": {"uv": [5, 3, 10, 10.1], "texture": "#0"}, + "south": {"uv": [5, 4, 10, 11.1], "texture": "#0"}, + "west": {"uv": [6, 4, 11, 11.1], "texture": "#0"}, + "up": {"uv": [6, 5, 11, 10], "texture": "#0"}, + "down": {"uv": [6, 5, 11, 10], "texture": "#0"} + } + }, + { + "from": [6, 2, 5], + "to": [11, 4, 10], + "faces": { + "north": {"uv": [5, 4, 10, 6], "texture": "#0"}, + "east": {"uv": [5, 3, 10, 5], "texture": "#0"}, + "south": {"uv": [5, 4, 10, 6], "texture": "#0"}, + "west": {"uv": [6, 4, 11, 6], "texture": "#0"}, + "up": {"uv": [6, 5, 11, 10], "texture": "#0"}, + "down": {"uv": [6, 5, 11, 10], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [0, 45, 0], + "translation": [0, 6, 2.5] + }, + "thirdperson_lefthand": { + "rotation": [0, 45, 0], + "translation": [0, 6, 2.5] + }, + "firstperson_righthand": { + "rotation": [9, 145, 0], + "translation": [2.25, 5.5, 1] + }, + "firstperson_lefthand": { + "rotation": [0, -145, 0], + "translation": [2.25, 5.5, 1] + }, + "ground": { + "translation": [0, 4, 0] + }, + "gui": { + "rotation": [20, 45, 0], + "translation": [0, 8.5, 0], + "scale": [2, 2, 2] + }, + "head": { + "translation": [0, 12, 0] + }, + "fixed": { + "translation": [-1.5, 10, 1.25], + "scale": [2, 2, 2] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/utils/ice_spark.json b/src/main/resources/assets/minecraft/models/utils/ice_spark.json new file mode 100644 index 0000000..21ee204 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/utils/ice_spark.json @@ -0,0 +1,90 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "block/blue_ice", + "particle": "block/blue_ice" + }, + "elements": [ + { + "from": [6.25, 1.25, 5.25], + "to": [10.75, 4.75, 9.75], + "faces": { + "north": {"uv": [5, 0, 10, 4], "texture": "#0"}, + "east": {"uv": [1, 4, 6, 8], "texture": "#0"}, + "south": {"uv": [5, 8.9, 10, 12.9], "texture": "#0"}, + "west": {"uv": [9, 3.9, 14, 7.9], "texture": "#0"}, + "up": {"uv": [5, 1, 10, 6], "texture": "#0"}, + "down": {"uv": [5, 9, 10, 14], "texture": "#0"} + } + }, + { + "from": [6.5, 0.7, 5.5], + "to": [10.5, 5.3, 9.5], + "faces": { + "north": {"uv": [5, 0, 10, 5.6], "texture": "#0"}, + "east": {"uv": [1, 4, 6, 9.6], "texture": "#0"}, + "south": {"uv": [5, 8.9, 10, 14.5], "texture": "#0"}, + "west": {"uv": [9, 3.9, 14, 9.5], "texture": "#0"}, + "up": {"uv": [5, 1, 10, 6], "texture": "#0"}, + "down": {"uv": [5, 9, 10, 14], "texture": "#0"} + } + }, + { + "from": [6.9, 0.3, 5.9], + "to": [10.1, 5.7, 9.1], + "faces": { + "north": {"uv": [5, 0, 10, 7.1], "texture": "#0"}, + "east": {"uv": [1, 4, 6, 11.1], "texture": "#0"}, + "south": {"uv": [5, 8.9, 10, 16], "texture": "#0"}, + "west": {"uv": [9, 3.9, 14, 11], "texture": "#0"}, + "up": {"uv": [5, 1, 10, 6], "texture": "#0"}, + "down": {"uv": [5, 9, 10, 14], "texture": "#0"} + } + }, + { + "from": [6, 2, 5], + "to": [11, 4, 10], + "faces": { + "north": {"uv": [5, 0, 10, 2], "texture": "#0"}, + "east": {"uv": [1, 4, 6, 6], "texture": "#0"}, + "south": {"uv": [5, 8.9, 10, 10.9], "texture": "#0"}, + "west": {"uv": [9, 3.9, 14, 5.9], "texture": "#0"}, + "up": {"uv": [5, 1, 10, 6], "texture": "#0"}, + "down": {"uv": [5, 9, 10, 14], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [0, 45, 0], + "translation": [0, 6, 2.5] + }, + "thirdperson_lefthand": { + "rotation": [0, 45, 0], + "translation": [0, 6, 2.5] + }, + "firstperson_righthand": { + "rotation": [9, 145, 0], + "translation": [2.25, 5.5, 1] + }, + "firstperson_lefthand": { + "rotation": [0, -145, 0], + "translation": [2.25, 5.5, 1] + }, + "ground": { + "translation": [0, 4, 0] + }, + "gui": { + "rotation": [20, 45, 0], + "translation": [0, 8.5, 0], + "scale": [2, 2, 2] + }, + "head": { + "translation": [0, 12, 0] + }, + "fixed": { + "translation": [-1.5, 10, 1.25], + "scale": [2, 2, 2] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/utils/light_emblem.json b/src/main/resources/assets/minecraft/models/utils/light_emblem.json new file mode 100644 index 0000000..eee39b1 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/utils/light_emblem.json @@ -0,0 +1,699 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "block/end_rod", + "1": "block/gold_block", + "2": "block/iron_block", + "particle": "end_rod" + }, + "elements": [ + { + "from": [7, 1, 8], + "to": [8, 9, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 0]}, + "faces": { + "north": {"uv": [0, 0, 2, 15], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 15], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 15], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 15], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 7], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 7], "texture": "#0"} + } + }, + { + "from": [5, 0, 6], + "to": [10, 1, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 0]}, + "faces": { + "north": {"uv": [0, 0, 16, 4], "texture": "#2"}, + "east": {"uv": [0, 0, 16, 4], "texture": "#2"}, + "south": {"uv": [0, 0, 16, 4], "texture": "#2"}, + "west": {"uv": [0, 0, 16, 4], "texture": "#2"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#2"} + } + }, + { + "from": [6, 9, 7], + "to": [9, 11, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 0]}, + "faces": { + "north": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 6, 9], "texture": "#1"}, + "down": {"uv": [3, 6, 6, 9], "texture": "#1"} + } + }, + { + "from": [6, 18, 7], + "to": [9, 20, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 0]}, + "faces": { + "north": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 6, 9], "texture": "#1"}, + "down": {"uv": [3, 6, 6, 9], "texture": "#1"} + } + }, + { + "from": [7, 8.8, 5], + "to": [8, 10.8, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "texture": "#1"} + } + }, + { + "from": [7, 12.8, 12.5], + "to": [8, 15.8, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 17.8, 9], + "to": [8, 19.8, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 15.8, 11.3], + "to": [8, 17.8, 13.3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 12.8, 12.5], + "to": [8, 15.8, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 10.8, 11.3], + "to": [8, 12.8, 13.3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [7, 8.8, 9], + "to": [8, 10.8, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-1, 12.8, 15.5], + "to": [0, 15.8, 17.5], + "rotation": {"angle": 45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-1, 17.8, 12], + "to": [0, 19.8, 15], + "rotation": {"angle": 45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-1, 15.8, 14.3], + "to": [0, 17.8, 16.3], + "rotation": {"angle": 45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-1, 12.8, 15.5], + "to": [0, 15.8, 17.5], + "rotation": {"angle": 45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-1, 10.8, 14.3], + "to": [0, 12.8, 16.3], + "rotation": {"angle": 45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [-1, 8.8, 12], + "to": [0, 10.8, 15], + "rotation": {"angle": 45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [11, 12.8, -5.5], + "to": [12, 15.8, -3.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "texture": "#1"} + } + }, + { + "from": [11, 17.8, -3], + "to": [12, 19.8, 0], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "texture": "#1"} + } + }, + { + "from": [11, 15.8, -4.3], + "to": [12, 17.8, -2.3], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "texture": "#1"} + } + }, + { + "from": [11, 12.8, -5.5], + "to": [12, 15.8, -3.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "texture": "#1"} + } + }, + { + "from": [11, 10.8, -4.3], + "to": [12, 12.8, -2.3], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "texture": "#1"} + } + }, + { + "from": [11, 8.8, -3], + "to": [12, 10.8, 0], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "texture": "#1"} + } + }, + { + "from": [11, 12.8, 4.7], + "to": [12, 15.8, 6.7], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [11, 17.8, 1.2], + "to": [12, 19.8, 4.2], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [11, 15.8, 3.5], + "to": [12, 17.8, 5.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [11, 12.8, 4.7], + "to": [12, 15.8, 6.7], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [11, 10.8, 3.5], + "to": [12, 12.8, 5.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [11, 8.8, 1.2], + "to": [12, 10.8, 4.2], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [11.6, 12.8, 8], + "to": [13.6, 15.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8.1, 17.8, 8], + "to": [11.1, 19.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10.4, 15.8, 8], + "to": [12.4, 17.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [11.6, 12.8, 8], + "to": [13.6, 15.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [10.4, 10.8, 8], + "to": [12.4, 12.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [8.1, 8.8, 8], + "to": [11.1, 10.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 90, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [1.4, 12.8, 8], + "to": [3.4, 15.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [3.9, 17.8, 8], + "to": [6.9, 19.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [2.6, 15.8, 8], + "to": [4.6, 17.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [1.4, 12.8, 8], + "to": [3.4, 15.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [2.6, 10.8, 8], + "to": [4.6, 12.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [3.9, 8.8, 8], + "to": [6.9, 10.8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7.3, 17.8, 0], + "to": [10.3, 19.8, 1], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [6, 15.8, 0], + "to": [8, 17.8, 1], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4.8, 12.8, 0], + "to": [6.8, 15.8, 1], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [6, 10.8, 0], + "to": [8, 12.8, 1], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7.3, 8.8, 0], + "to": [10.3, 10.8, 1], + "rotation": {"angle": -45, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "rotation": 270, "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7, 17.8, 5], + "to": [8, 19.8, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 6, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 9], "texture": "#1"} + } + }, + { + "from": [7, 10.8, 3.7], + "to": [8, 12.8, 5.7], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "texture": "#1"} + } + }, + { + "from": [7, 15.8, 3.7], + "to": [8, 17.8, 5.7], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 8], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "texture": "#1"} + } + }, + { + "from": [7, 12.8, 2.5], + "to": [8, 15.8, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "texture": "#1"} + } + }, + { + "from": [7, 12.8, 2.5], + "to": [8, 15.8, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "east": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "south": {"uv": [3, 6, 4, 9], "texture": "#1"}, + "west": {"uv": [3, 6, 5, 9], "texture": "#1"}, + "up": {"uv": [3, 6, 4, 8], "texture": "#1"}, + "down": {"uv": [3, 6, 4, 8], "texture": "#1"} + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [0, 1.75, 0.75] + }, + "thirdperson_lefthand": { + "translation": [0, 1.75, -0.75] + }, + "firstperson_righthand": { + "translation": [2.5, 0, 0] + }, + "firstperson_lefthand": { + "translation": [1.75, 0, 0] + }, + "ground": { + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [-5, 36, 20], + "translation": [0.5, -1.5, 0], + "scale": [0.8, 0.8, 0.8] + }, + "fixed": { + "translation": [0, -2, 0] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/utils/magic_repair.json b/src/main/resources/assets/minecraft/models/utils/magic_repair.json new file mode 100644 index 0000000..bb691f2 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/utils/magic_repair.json @@ -0,0 +1,64 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "block/amethyst_block" + }, + "elements": [ + { + "from": [7, 3, 7], + "to": [9.01, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 3.43575, 10.7], "texture": "#0"}, + "east": {"uv": [0, 0, 3.4283, 10.7], "texture": "#0"}, + "south": {"uv": [0, 0, 3.43575, 10.7], "texture": "#0"}, + "west": {"uv": [0, 0, 3.4283, 10.7], "texture": "#0"}, + "up": {"uv": [0, 0, 3.43575, 4.81009], "texture": "#0"}, + "down": {"uv": [0, 0, 3.43575, 4.81009], "texture": "#0"} + } + }, + { + "from": [4, 6, 7.01], + "to": [12, 8, 9.01], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, + "faces": { + "north": {"uv": [0, 0, 7.9, 4.81009], "texture": "#0"}, + "east": {"uv": [0, 0, 3.4283, 4.81009], "texture": "#0"}, + "south": {"uv": [0, 0, 7.9, 4.81009], "texture": "#0"}, + "west": {"uv": [0, 0, 3.4283, 4.81009], "texture": "#0"}, + "up": {"uv": [0, 0, 7.9, 4.81009], "texture": "#0"}, + "down": {"uv": [0, 0, 7.9, 4.81009], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [-9, -28, 1], + "translation": [0, 2.75, 0.5] + }, + "thirdperson_lefthand": { + "rotation": [-9, -28, 1], + "translation": [0, 2.75, 0.5] + }, + "firstperson_righthand": { + "rotation": [0, -3, 17], + "translation": [0.25, 2.5, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 4, 17], + "translation": [0.75, 2.5, 0] + }, + "ground": { + "translation": [0, 1.25, 0] + }, + "gui": { + "rotation": [-40, 180, 26], + "translation": [1.25, 1.25, 0], + "scale": [2, 2, 2] + }, + "fixed": { + "translation": [0, 1.75, 0], + "scale": [2, 2, 2] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/acid_shield.json b/src/main/resources/assets/minecraft/models/weapons/acid_shield.json new file mode 100644 index 0000000..90fb177 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/acid_shield.json @@ -0,0 +1,397 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "16": "minecraft:block/anvil", + "39": "minecraft:block/bamboo_stalk", + "79": "minecraft:block/black_concrete", + "85": "minecraft:block/black_terracotta", + "105": "minecraft:block/bone_block_side", + "177": "minecraft:block/chiseled_stone_bricks", + "376": "minecraft:block/green_glazed_terracotta", + "particle": "minecraft:block/acacia_door_bottom" + }, + "elements": [ + { + "from": [-0.5, -2.5, 7], + "to": [17, 20.5, 9], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#376"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#376"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "up": {"uv": [0, 0, 16, 2], "texture": "#376"}, + "down": {"uv": [0, 0, 16, 2], "texture": "#376"} + } + }, + { + "from": [1.5, -0.5, 5.5], + "to": [15, 18, 7.5], + "faces": { + "north": {"uv": [0, 0, 13.5, 16], "texture": "#39"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "south": {"uv": [0, 0, 13.5, 16], "texture": "#39"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "up": {"uv": [0, 0, 13.5, 2], "texture": "#39"}, + "down": {"uv": [0, 0, 13.5, 2], "texture": "#39"} + } + }, + { + "from": [7.5, 6.5, 3.9], + "to": [8.5, 7.5, 5.4], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#79"}, + "east": {"uv": [0, 0, 1.5, 1], "texture": "#79"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#79"}, + "west": {"uv": [0, 0, 1.5, 1], "texture": "#79"}, + "up": {"uv": [0, 0, 1, 1.5], "texture": "#79"}, + "down": {"uv": [0, 0, 1, 1.5], "texture": "#79"} + } + }, + { + "from": [-2.5, -1.5, 7], + "to": [-0.5, 19.5, 9], + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "south": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#376"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#376"} + } + }, + { + "from": [-4.5, 2, 9], + "to": [-2.5, 16, 11], + "faces": { + "north": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [19.5, 2, 9], + "to": [21, 16, 11], + "faces": { + "north": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [-0.5, 0, 5.5], + "to": [1.5, 17.5, 7], + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "east": {"uv": [0, 0, 1.5, 16], "texture": "#39"}, + "south": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "west": {"uv": [0, 0, 1.5, 16], "texture": "#39"}, + "up": {"uv": [0, 0, 2, 1.5], "texture": "#39"}, + "down": {"uv": [0, 0, 2, 1.5], "texture": "#39"} + } + }, + { + "from": [15, 0, 5.5], + "to": [17, 17.5, 7], + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "east": {"uv": [0, 0, 1.5, 16], "texture": "#39"}, + "south": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "west": {"uv": [0, 0, 1.5, 16], "texture": "#39"}, + "up": {"uv": [0, 0, 2, 1.5], "texture": "#39"}, + "down": {"uv": [0, 0, 2, 1.5], "texture": "#39"} + } + }, + { + "from": [17, -1.5, 7], + "to": [19, 19.5, 9], + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "south": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#376"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#376"} + } + }, + { + "from": [1.5, 18.5, 9], + "to": [15, 22.5, 11], + "faces": { + "north": {"uv": [0, 0, 13.5, 4], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 4], "texture": "#177"}, + "south": {"uv": [0, 0, 13.5, 4], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 4], "texture": "#177"}, + "up": {"uv": [0, 0, 13.5, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 13.5, 2], "texture": "#177"} + } + }, + { + "from": [1.5, -4.5, 9], + "to": [15, -0.5, 11], + "faces": { + "north": {"uv": [0, 0, 13.5, 4], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 4], "texture": "#177"}, + "south": {"uv": [0, 0, 13.5, 4], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 4], "texture": "#177"}, + "up": {"uv": [0, 0, 13.5, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 13.5, 2], "texture": "#177"} + } + }, + { + "from": [15, -2.5, 9], + "to": [17, 3.5, 11], + "faces": { + "north": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [15, 14.5, 9], + "to": [17, 20.5, 11], + "faces": { + "north": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [-0.5, -2.5, 9], + "to": [1.5, 3.5, 11], + "faces": { + "north": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [-0.5, 14.5, 9], + "to": [1.5, 20.5, 11], + "faces": { + "north": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [-2.5, 1.5, 9], + "to": [-0.5, 16.5, 11], + "faces": { + "north": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [17, 1.5, 9], + "to": [19.5, 16.5, 11], + "faces": { + "north": {"uv": [0, 0, 2.5, 15], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "south": {"uv": [0, 0, 2.5, 15], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "up": {"uv": [0, 0, 2.5, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2.5, 2], "texture": "#177"} + } + }, + { + "from": [5, 4, 4], + "to": [11, 5.5, 5.5], + "faces": { + "north": {"uv": [0, 0, 6, 1.5], "texture": "#105"}, + "east": {"uv": [0, 0, 1.5, 1.5], "texture": "#105"}, + "south": {"uv": [0, 0, 6, 1.5], "texture": "#105"}, + "west": {"uv": [0, 0, 1.5, 1.5], "texture": "#105"}, + "up": {"uv": [0, 0, 6, 1.5], "texture": "#105"}, + "down": {"uv": [0, 0, 6, 1.5], "texture": "#105"} + } + }, + { + "from": [4, 5.5, 4], + "to": [12, 13.5, 6], + "faces": { + "north": {"uv": [0, 0, 8, 8], "texture": "#105"}, + "east": {"uv": [0, 0, 2, 8], "texture": "#105"}, + "south": {"uv": [0, 0, 8, 8], "texture": "#105"}, + "west": {"uv": [0, 0, 2, 8], "texture": "#105"}, + "up": {"uv": [0, 0, 8, 2], "texture": "#105"}, + "down": {"uv": [0, 0, 8, 2], "texture": "#105"} + } + }, + { + "from": [5, 9, 3.9], + "to": [7, 11, 5.4], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#85"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#85"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#85"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#85"}, + "up": {"uv": [0, 0, 1, 0.5], "texture": "#85"}, + "down": {"uv": [0, 0, 1, 0.5], "texture": "#85"} + } + }, + { + "from": [9, 9, 3.9], + "to": [11, 11, 5.4], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#85"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#85"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#85"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#85"}, + "up": {"uv": [0, 0, 1, 0.5], "texture": "#85"}, + "down": {"uv": [0, 0, 1, 0.5], "texture": "#85"} + } + }, + { + "from": [3.5, 6.5, 4], + "to": [4, 12.5, 6], + "faces": { + "north": {"uv": [0, 0, 0.5, 6], "texture": "#105"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#105"}, + "south": {"uv": [0, 0, 0.5, 6], "texture": "#105"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#105"}, + "up": {"uv": [0, 0, 0.5, 2], "texture": "#105"}, + "down": {"uv": [0, 0, 0.5, 2], "texture": "#105"} + } + }, + { + "from": [12, 6.5, 4], + "to": [12.5, 12.5, 6], + "faces": { + "north": {"uv": [0, 0, 0.5, 6], "texture": "#105"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#105"}, + "south": {"uv": [0, 0, 0.5, 6], "texture": "#105"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#105"}, + "up": {"uv": [0, 0, 0.5, 2], "texture": "#105"}, + "down": {"uv": [0, 0, 0.5, 2], "texture": "#105"} + } + }, + { + "from": [5.5, 3.5, 4], + "to": [10.5, 4, 6], + "faces": { + "north": {"uv": [0, 0, 5, 0.5], "texture": "#105"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#105"}, + "south": {"uv": [0, 0, 5, 0.5], "texture": "#105"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#105"}, + "up": {"uv": [0, 0, 5, 2], "texture": "#105"}, + "down": {"uv": [0, 0, 5, 2], "texture": "#105"} + } + }, + { + "from": [5.5, 13.5, 4], + "to": [10.5, 14, 6], + "faces": { + "north": {"uv": [0, 0, 5, 0.5], "texture": "#105"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#105"}, + "south": {"uv": [0, 0, 5, 0.5], "texture": "#105"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#105"}, + "up": {"uv": [0, 0, 5, 2], "texture": "#105"}, + "down": {"uv": [0, 0, 5, 2], "texture": "#105"} + } + }, + { + "from": [6, 4.5, 3.9], + "to": [10, 5.5, 4.4], + "faces": { + "north": {"uv": [0, 0, 4, 1], "texture": "#79"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#79"}, + "south": {"uv": [0, 0, 4, 1], "texture": "#79"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#79"}, + "up": {"uv": [0, 0, 4, 0.5], "texture": "#79"}, + "down": {"uv": [0, 0, 4, 0.5], "texture": "#79"} + } + }, + { + "from": [12.5, 8, 9], + "to": [14, 9.5, 14.5], + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "east": {"uv": [0, 0, 5.5, 1.5], "texture": "#16"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "west": {"uv": [0, 0, 5.5, 1.5], "texture": "#16"}, + "up": {"uv": [0, 0, 1.5, 5.5], "texture": "#16"}, + "down": {"uv": [0, 0, 1.5, 5.5], "texture": "#16"} + } + }, + { + "from": [3, 8, 9], + "to": [4.5, 9.5, 14.5], + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "east": {"uv": [0, 0, 5.5, 1.5], "texture": "#16"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "west": {"uv": [0, 0, 5.5, 1.5], "texture": "#16"}, + "up": {"uv": [0, 0, 1.5, 5.5], "texture": "#16"}, + "down": {"uv": [0, 0, 1.5, 5.5], "texture": "#16"} + } + }, + { + "from": [4, 8, 13], + "to": [12.5, 9.5, 14.5], + "faces": { + "north": {"uv": [0, 0, 8.5, 1.5], "texture": "#16"}, + "east": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "south": {"uv": [0, 0, 8.5, 1.5], "texture": "#16"}, + "west": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "up": {"uv": [0, 0, 8.5, 1.5], "texture": "#16"}, + "down": {"uv": [0, 0, 8.5, 1.5], "texture": "#16"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [70, -83, -14], + "translation": [4, -1, 1.75], + "scale": [0.75, 0.75, 0.75] + }, + "thirdperson_lefthand": { + "rotation": [70, -83, -14], + "translation": [4, -1, 1.75], + "scale": [0.75, 0.75, 0.75] + }, + "firstperson_righthand": { + "rotation": [0, -12, 0], + "translation": [5.75, -7, -1.25], + "scale": [0.75, 0.75, 0.75] + }, + "firstperson_lefthand": { + "rotation": [0, -12, 0], + "translation": [5.75, -7, -1.25], + "scale": [0.75, 0.75, 0.75] + }, + "ground": { + "translation": [0, 8.25, 0], + "scale": [0.75, 0.75, 0.75] + }, + "gui": { + "rotation": [0, 180, 0], + "translation": [0, -0.75, 0], + "scale": [0.75, 0.75, 0.75] + }, + "fixed": { + "scale": [0.75, 0.75, 0.75] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/acid_shield_blocking.json b/src/main/resources/assets/minecraft/models/weapons/acid_shield_blocking.json new file mode 100644 index 0000000..289644f --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/acid_shield_blocking.json @@ -0,0 +1,397 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "16": "minecraft:block/anvil", + "39": "minecraft:block/bamboo_stalk", + "79": "minecraft:block/black_concrete", + "85": "minecraft:block/black_terracotta", + "105": "minecraft:block/bone_block_side", + "177": "minecraft:block/chiseled_stone_bricks", + "376": "minecraft:block/green_glazed_terracotta", + "particle": "minecraft:block/acacia_door_bottom" + }, + "elements": [ + { + "from": [-0.5, -2.5, 7], + "to": [17, 20.5, 9], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#376"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#376"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "up": {"uv": [0, 0, 16, 2], "texture": "#376"}, + "down": {"uv": [0, 0, 16, 2], "texture": "#376"} + } + }, + { + "from": [1.5, -0.5, 5.5], + "to": [15, 18, 7.5], + "faces": { + "north": {"uv": [0, 0, 13.5, 16], "texture": "#39"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "south": {"uv": [0, 0, 13.5, 16], "texture": "#39"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "up": {"uv": [0, 0, 13.5, 2], "texture": "#39"}, + "down": {"uv": [0, 0, 13.5, 2], "texture": "#39"} + } + }, + { + "from": [7.5, 6.5, 3.9], + "to": [8.5, 7.5, 5.4], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#79"}, + "east": {"uv": [0, 0, 1.5, 1], "texture": "#79"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#79"}, + "west": {"uv": [0, 0, 1.5, 1], "texture": "#79"}, + "up": {"uv": [0, 0, 1, 1.5], "texture": "#79"}, + "down": {"uv": [0, 0, 1, 1.5], "texture": "#79"} + } + }, + { + "from": [-2.5, -1.5, 7], + "to": [-0.5, 19.5, 9], + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "south": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#376"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#376"} + } + }, + { + "from": [-4.5, 2, 9], + "to": [-2.5, 16, 11], + "faces": { + "north": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [19.5, 2, 9], + "to": [21, 16, 11], + "faces": { + "north": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 14], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [-0.5, 0, 5.5], + "to": [1.5, 17.5, 7], + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "east": {"uv": [0, 0, 1.5, 16], "texture": "#39"}, + "south": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "west": {"uv": [0, 0, 1.5, 16], "texture": "#39"}, + "up": {"uv": [0, 0, 2, 1.5], "texture": "#39"}, + "down": {"uv": [0, 0, 2, 1.5], "texture": "#39"} + } + }, + { + "from": [15, 0, 5.5], + "to": [17, 17.5, 7], + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "east": {"uv": [0, 0, 1.5, 16], "texture": "#39"}, + "south": {"uv": [0, 0, 2, 16], "texture": "#39"}, + "west": {"uv": [0, 0, 1.5, 16], "texture": "#39"}, + "up": {"uv": [0, 0, 2, 1.5], "texture": "#39"}, + "down": {"uv": [0, 0, 2, 1.5], "texture": "#39"} + } + }, + { + "from": [17, -1.5, 7], + "to": [19, 19.5, 9], + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "south": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#376"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#376"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#376"} + } + }, + { + "from": [1.5, 18.5, 9], + "to": [15, 22.5, 11], + "faces": { + "north": {"uv": [0, 0, 13.5, 4], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 4], "texture": "#177"}, + "south": {"uv": [0, 0, 13.5, 4], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 4], "texture": "#177"}, + "up": {"uv": [0, 0, 13.5, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 13.5, 2], "texture": "#177"} + } + }, + { + "from": [1.5, -4.5, 9], + "to": [15, -0.5, 11], + "faces": { + "north": {"uv": [0, 0, 13.5, 4], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 4], "texture": "#177"}, + "south": {"uv": [0, 0, 13.5, 4], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 4], "texture": "#177"}, + "up": {"uv": [0, 0, 13.5, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 13.5, 2], "texture": "#177"} + } + }, + { + "from": [15, -2.5, 9], + "to": [17, 3.5, 11], + "faces": { + "north": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [15, 14.5, 9], + "to": [17, 20.5, 11], + "faces": { + "north": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [-0.5, -2.5, 9], + "to": [1.5, 3.5, 11], + "faces": { + "north": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [-0.5, 14.5, 9], + "to": [1.5, 20.5, 11], + "faces": { + "north": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [-2.5, 1.5, 9], + "to": [-0.5, 16.5, 11], + "faces": { + "north": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "south": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#177"} + } + }, + { + "from": [17, 1.5, 9], + "to": [19.5, 16.5, 11], + "faces": { + "north": {"uv": [0, 0, 2.5, 15], "texture": "#177"}, + "east": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "south": {"uv": [0, 0, 2.5, 15], "texture": "#177"}, + "west": {"uv": [0, 0, 2, 15], "texture": "#177"}, + "up": {"uv": [0, 0, 2.5, 2], "texture": "#177"}, + "down": {"uv": [0, 0, 2.5, 2], "texture": "#177"} + } + }, + { + "from": [5, 4, 4], + "to": [11, 5.5, 5.5], + "faces": { + "north": {"uv": [0, 0, 6, 1.5], "texture": "#105"}, + "east": {"uv": [0, 0, 1.5, 1.5], "texture": "#105"}, + "south": {"uv": [0, 0, 6, 1.5], "texture": "#105"}, + "west": {"uv": [0, 0, 1.5, 1.5], "texture": "#105"}, + "up": {"uv": [0, 0, 6, 1.5], "texture": "#105"}, + "down": {"uv": [0, 0, 6, 1.5], "texture": "#105"} + } + }, + { + "from": [4, 5.5, 4], + "to": [12, 13.5, 6], + "faces": { + "north": {"uv": [0, 0, 8, 8], "texture": "#105"}, + "east": {"uv": [0, 0, 2, 8], "texture": "#105"}, + "south": {"uv": [0, 0, 8, 8], "texture": "#105"}, + "west": {"uv": [0, 0, 2, 8], "texture": "#105"}, + "up": {"uv": [0, 0, 8, 2], "texture": "#105"}, + "down": {"uv": [0, 0, 8, 2], "texture": "#105"} + } + }, + { + "from": [5, 9, 3.9], + "to": [7, 11, 5.4], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#85"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#85"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#85"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#85"}, + "up": {"uv": [0, 0, 1, 0.5], "texture": "#85"}, + "down": {"uv": [0, 0, 1, 0.5], "texture": "#85"} + } + }, + { + "from": [9, 9, 3.9], + "to": [11, 11, 5.4], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#85"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#85"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#85"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#85"}, + "up": {"uv": [0, 0, 1, 0.5], "texture": "#85"}, + "down": {"uv": [0, 0, 1, 0.5], "texture": "#85"} + } + }, + { + "from": [3.5, 6.5, 4], + "to": [4, 12.5, 6], + "faces": { + "north": {"uv": [0, 0, 0.5, 6], "texture": "#105"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#105"}, + "south": {"uv": [0, 0, 0.5, 6], "texture": "#105"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#105"}, + "up": {"uv": [0, 0, 0.5, 2], "texture": "#105"}, + "down": {"uv": [0, 0, 0.5, 2], "texture": "#105"} + } + }, + { + "from": [12, 6.5, 4], + "to": [12.5, 12.5, 6], + "faces": { + "north": {"uv": [0, 0, 0.5, 6], "texture": "#105"}, + "east": {"uv": [0, 0, 2, 6], "texture": "#105"}, + "south": {"uv": [0, 0, 0.5, 6], "texture": "#105"}, + "west": {"uv": [0, 0, 2, 6], "texture": "#105"}, + "up": {"uv": [0, 0, 0.5, 2], "texture": "#105"}, + "down": {"uv": [0, 0, 0.5, 2], "texture": "#105"} + } + }, + { + "from": [5.5, 3.5, 4], + "to": [10.5, 4, 6], + "faces": { + "north": {"uv": [0, 0, 5, 0.5], "texture": "#105"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#105"}, + "south": {"uv": [0, 0, 5, 0.5], "texture": "#105"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#105"}, + "up": {"uv": [0, 0, 5, 2], "texture": "#105"}, + "down": {"uv": [0, 0, 5, 2], "texture": "#105"} + } + }, + { + "from": [5.5, 13.5, 4], + "to": [10.5, 14, 6], + "faces": { + "north": {"uv": [0, 0, 5, 0.5], "texture": "#105"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#105"}, + "south": {"uv": [0, 0, 5, 0.5], "texture": "#105"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#105"}, + "up": {"uv": [0, 0, 5, 2], "texture": "#105"}, + "down": {"uv": [0, 0, 5, 2], "texture": "#105"} + } + }, + { + "from": [6, 4.5, 3.9], + "to": [10, 5.5, 4.4], + "faces": { + "north": {"uv": [0, 0, 4, 1], "texture": "#79"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#79"}, + "south": {"uv": [0, 0, 4, 1], "texture": "#79"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#79"}, + "up": {"uv": [0, 0, 4, 0.5], "texture": "#79"}, + "down": {"uv": [0, 0, 4, 0.5], "texture": "#79"} + } + }, + { + "from": [12.5, 8, 9], + "to": [14, 9.5, 14.5], + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "east": {"uv": [0, 0, 5.5, 1.5], "texture": "#16"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "west": {"uv": [0, 0, 5.5, 1.5], "texture": "#16"}, + "up": {"uv": [0, 0, 1.5, 5.5], "texture": "#16"}, + "down": {"uv": [0, 0, 1.5, 5.5], "texture": "#16"} + } + }, + { + "from": [3, 8, 9], + "to": [4.5, 9.5, 14.5], + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "east": {"uv": [0, 0, 5.5, 1.5], "texture": "#16"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "west": {"uv": [0, 0, 5.5, 1.5], "texture": "#16"}, + "up": {"uv": [0, 0, 1.5, 5.5], "texture": "#16"}, + "down": {"uv": [0, 0, 1.5, 5.5], "texture": "#16"} + } + }, + { + "from": [4, 8, 13], + "to": [12.5, 9.5, 14.5], + "faces": { + "north": {"uv": [0, 0, 8.5, 1.5], "texture": "#16"}, + "east": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "south": {"uv": [0, 0, 8.5, 1.5], "texture": "#16"}, + "west": {"uv": [0, 0, 1.5, 1.5], "texture": "#16"}, + "up": {"uv": [0, 0, 8.5, 1.5], "texture": "#16"}, + "down": {"uv": [0, 0, 8.5, 1.5], "texture": "#16"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [70, -43, -14], + "translation": [4, -1, 1.75], + "scale": [0.75, 0.75, 0.75] + }, + "thirdperson_lefthand": { + "rotation": [70, -43, -14], + "translation": [4, -1, 1.75], + "scale": [0.75, 0.75, 0.75] + }, + "firstperson_righthand": { + "rotation": [2, 0, 10], + "translation": [-0.75, -3.75, -1.25], + "scale": [0.75, 0.75, 0.75] + }, + "firstperson_lefthand": { + "rotation": [-2, 0, 10], + "translation": [-0.75, -3.75, -1.25], + "scale": [0.75, 0.75, 0.75] + }, + "ground": { + "translation": [0, 8.25, 0], + "scale": [0.75, 0.75, 0.75] + }, + "gui": { + "rotation": [0, 180, 0], + "translation": [0, -0.75, 0], + "scale": [0.75, 0.75, 0.75] + }, + "fixed": { + "scale": [0.75, 0.75, 0.75] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/amethyst_sword.json b/src/main/resources/assets/minecraft/models/weapons/amethyst_sword.json new file mode 100644 index 0000000..8e7392e --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/amethyst_sword.json @@ -0,0 +1,412 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "minecraft:block/amethyst_block", + "2": "minecraft:block/obsidian", + "3": "minecraft:block/iron_block", + "particle": "minecraft:block/amethyst_block" + }, + "elements": [ + { + "from": [14.5, 15, 14], + "to": [15.5, 18, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 6, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 3], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 3], "texture": "#0"} + } + }, + { + "from": [14.5, 18, 15], + "to": [15.5, 22, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 18, 15]}, + "faces": { + "north": {"uv": [0, 0, 3, 4], "texture": "#0"}, + "east": {"uv": [0, 0, 3, 4], "texture": "#0"}, + "south": {"uv": [0, 0, 3, 4], "texture": "#0"}, + "west": {"uv": [0, 0, 3, 4], "texture": "#0"}, + "up": {"uv": [0, 0, 3, 4], "texture": "#0"}, + "down": {"uv": [0, 0, 3, 4], "texture": "#0"} + } + }, + { + "from": [14.5, 22, 16], + "to": [15.5, 27, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 22, 16]}, + "faces": { + "north": {"uv": [0, 0, 2, 5], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 5], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 5], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 5], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 5], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 5], "texture": "#0"} + } + }, + { + "from": [14.505, 22, 15], + "to": [15.495, 25, 17], + "rotation": {"angle": 22.5, "axis": "x", "origin": [14.5, 22, 15]}, + "faces": { + "north": {"uv": [0, 0, 2, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 3], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 3], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 3], "texture": "#0"} + } + }, + { + "from": [14.505, 18, 14], + "to": [15.495, 21, 16], + "rotation": {"angle": 22.5, "axis": "x", "origin": [14.5, 18, 14]}, + "faces": { + "north": {"uv": [0, 0, 2, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 3], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 3], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 3], "texture": "#0"} + } + }, + { + "from": [14.505, 27, 16], + "to": [15.495, 30, 17], + "rotation": {"angle": 22.5, "axis": "x", "origin": [13.5, 27, 16]}, + "faces": { + "north": {"uv": [0, 0, 1, 3], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 3], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 3], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 3], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 3], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 3], "texture": "#0"} + } + }, + { + "from": [14.5, 0, 13], + "to": [15.5, 9, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 7, 13]}, + "faces": { + "north": {"uv": [0, 0, 5, 9], "texture": "#0"}, + "east": {"uv": [0, 0, 5, 9], "texture": "#0"}, + "south": {"uv": [0, 0, 5, 9], "texture": "#0"}, + "west": {"uv": [0, 0, 5, 9], "texture": "#0"}, + "up": {"uv": [0, 0, 5, 9], "texture": "#0"}, + "down": {"uv": [0, 0, 5, 9], "texture": "#0"} + } + }, + { + "from": [14.5, 27, 17], + "to": [15.5, 29.5, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, 27, 16]}, + "faces": { + "north": {"uv": [0, 0, 1, 5], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 5], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 5], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 5], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 5], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 5], "texture": "#0"} + } + }, + { + "from": [14.5, 9, 14], + "to": [15.5, 15, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, 12, 14]}, + "faces": { + "north": {"uv": [0, 0, 4, 6], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 6], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 6], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 6], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 6], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 6], "texture": "#0"} + } + }, + { + "from": [14.505, 9, 13], + "to": [15.495, 13, 15], + "rotation": {"angle": 22.5, "axis": "x", "origin": [14.5, 9, 13]}, + "faces": { + "north": {"uv": [0, 0, 2, 4], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 4], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 4], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 4], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 4], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 4], "texture": "#0"} + } + }, + { + "from": [13.5, -2, 13], + "to": [16.5, 0, 18.5], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, -2, 15]}, + "faces": { + "north": {"uv": [0, 0, 3, 2], "texture": "#2"}, + "east": {"uv": [0, 0, 5.5, 2], "texture": "#2"}, + "south": {"uv": [0, 0, 3, 2], "texture": "#2"}, + "west": {"uv": [0, 0, 5.5, 2], "texture": "#2"}, + "up": {"uv": [0, 0, 3, 5.5], "texture": "#2"}, + "down": {"uv": [0, 0, 3, 5.5], "texture": "#2"} + } + }, + { + "from": [14.5, -8.5, 15], + "to": [15.5, -2, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [14.5, -3, 15]}, + "faces": { + "north": {"uv": [0, 0, 1, 6.5], "texture": "#3"}, + "east": {"uv": [0, 0, 1, 6.5], "texture": "#3"}, + "south": {"uv": [0, 0, 1, 6.5], "texture": "#3"}, + "west": {"uv": [0, 0, 1, 6.5], "texture": "#3"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#3"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#3"} + } + }, + { + "from": [13.5, -10, 14], + "to": [16.5, -8, 17], + "rotation": {"angle": 0, "axis": "y", "origin": [13.5, -10, 14]}, + "faces": { + "north": {"uv": [0, 0, 3, 2], "texture": "#2"}, + "east": {"uv": [0, 0, 3, 2], "texture": "#2"}, + "south": {"uv": [0, 0, 3, 2], "texture": "#2"}, + "west": {"uv": [0, 0, 3, 2], "texture": "#2"}, + "up": {"uv": [0, 0, 3, 3], "texture": "#2"}, + "down": {"uv": [0, 0, 3, 3], "texture": "#2"} + } + }, + { + "from": [14, -4, 14], + "to": [16, -2, 16], + "rotation": {"angle": -45, "axis": "x", "origin": [14.5, -4, 12]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#2"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#2"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#2"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#2"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#2"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#2"} + } + }, + { + "from": [14.0003, -11.5, 14], + "to": [16.0003, -8.5, 16], + "rotation": {"angle": -45, "axis": "x", "origin": [14.5, -11, 12]}, + "faces": { + "north": {"uv": [0, 0, 2, 3], "texture": "#2"}, + "east": {"uv": [0, 0, 2, 3], "texture": "#2"}, + "south": {"uv": [0, 0, 2, 3], "texture": "#2"}, + "west": {"uv": [0, 0, 2, 3], "texture": "#2"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#2"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#2"} + } + }, + { + "from": [13.999, -4.5, 11], + "to": [15.999, -1, 13], + "rotation": {"angle": 22.5, "axis": "x", "origin": [13.5, -3, 11]}, + "faces": { + "north": {"uv": [0, 0, 2, 3.5], "texture": "#2"}, + "east": {"uv": [0, 0, 2, 3.5], "texture": "#2"}, + "south": {"uv": [0, 0, 2, 3.5], "texture": "#2"}, + "west": {"uv": [0, 0, 2, 3.5], "texture": "#2"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#2"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#2"} + } + }, + { + "from": [14.0001, -8, 11], + "to": [16.0001, -4.5, 13], + "rotation": {"angle": -22.5, "axis": "x", "origin": [13.5, -6, 11]}, + "faces": { + "north": {"uv": [0, 0, 2, 3.5], "texture": "#2"}, + "east": {"uv": [0, 0, 2, 3.5], "texture": "#2"}, + "south": {"uv": [0, 0, 2, 3.5], "texture": "#2"}, + "west": {"uv": [0, 0, 2, 3.5], "texture": "#2"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#2"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#2"} + } + }, + { + "from": [12, -1.5, 13], + "to": [14, -0.49, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [12, -2.5, 13.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 1.01], "texture": "#2"}, + "east": {"uv": [0, 0, 6, 1.01], "texture": "#2"}, + "south": {"uv": [0, 0, 2, 1.01], "texture": "#2"}, + "west": {"uv": [0, 0, 6, 1.01], "texture": "#2"}, + "up": {"uv": [0, 0, 2, 6], "texture": "#2"}, + "down": {"uv": [0, 0, 2, 6], "texture": "#2"} + } + }, + { + "from": [16, -1.5, 13], + "to": [18, -0.5, 19], + "rotation": {"angle": 0, "axis": "y", "origin": [16, -2.5, 13.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 1], "texture": "#2"}, + "east": {"uv": [0, 0, 6, 1], "texture": "#2"}, + "south": {"uv": [0, 0, 2, 1], "texture": "#2"}, + "west": {"uv": [0, 0, 6, 1], "texture": "#2"}, + "up": {"uv": [0, 0, 2, 6], "texture": "#2"}, + "down": {"uv": [0, 0, 2, 6], "texture": "#2"} + } + }, + { + "from": [13, -1.5, 18], + "to": [17, -0.49, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [14, -2.5, 18.5]}, + "faces": { + "north": {"uv": [0, 0, 4, 1.01], "texture": "#2"}, + "east": {"uv": [0, 0, 2, 1.01], "texture": "#2"}, + "south": {"uv": [0, 0, 4, 1.01], "texture": "#2"}, + "west": {"uv": [0, 0, 2, 1.01], "texture": "#2"}, + "up": {"uv": [0, 0, 4, 2], "texture": "#2"}, + "down": {"uv": [0, 0, 4, 2], "texture": "#2"} + } + }, + { + "from": [13, -1.5, 11.5], + "to": [17, -0.5, 13.5], + "rotation": {"angle": 0, "axis": "y", "origin": [14, -2.5, 12]}, + "faces": { + "north": {"uv": [0, 0, 4, 1], "texture": "#2"}, + "east": {"uv": [0, 0, 2, 1], "texture": "#2"}, + "south": {"uv": [0, 0, 4, 1], "texture": "#2"}, + "west": {"uv": [0, 0, 2, 1], "texture": "#2"}, + "up": {"uv": [0, 0, 4, 2], "texture": "#2"}, + "down": {"uv": [0, 0, 4, 2], "texture": "#2"} + } + }, + { + "from": [14.5, -0.515, 18], + "to": [15.49, 7.985, 18.49], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 0, 16.5]}, + "faces": { + "north": {"uv": [0, 0, 0.99, 8.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0.49, 8.5], "texture": "#0"}, + "south": {"uv": [0, 0, 0.99, 8.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0.49, 8.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0.99, 0.49], "texture": "#0"}, + "down": {"uv": [0, 0, 0.99, 0.49], "texture": "#0"} + } + }, + { + "from": [14.505, 6.9, 14.639], + "to": [15.495, 7.91, 15.128], + "rotation": {"angle": -45, "axis": "x", "origin": [9.5, 11.5, 15.5]}, + "faces": { + "north": {"uv": [0, 0, 0.99, 1.01], "rotation": 180, "texture": "#0"}, + "east": {"uv": [0, 0, 0.489, 1.01], "rotation": 180, "texture": "#0"}, + "south": {"uv": [0, 0, 0.99, 1.01], "rotation": 180, "texture": "#0"}, + "west": {"uv": [0, 0, 0.489, 1.01], "rotation": 180, "texture": "#0"}, + "up": {"uv": [0, 0, 0.99, 0.489], "texture": "#0"}, + "down": {"uv": [0, 0, 0.99, 0.489], "texture": "#0"} + } + }, + { + "from": [14.25, 7.5, 15], + "to": [15.75, 15, 17.25], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 7.5, 14.5]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 7.5], "texture": "#0"}, + "east": {"uv": [0, 0, 2.25, 7.5], "texture": "#0"}, + "south": {"uv": [0, 0, 1.5, 7.5], "texture": "#0"}, + "west": {"uv": [0, 0, 2.25, 7.5], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 2.25], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 2.25], "texture": "#0"} + } + }, + { + "from": [14.25, 15, 15.5], + "to": [15.75, 19, 17.25], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 15, 14.5]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 4], "texture": "#0"}, + "east": {"uv": [0, 0, 1.75, 4], "texture": "#0"}, + "south": {"uv": [0, 0, 1.5, 4], "texture": "#0"}, + "west": {"uv": [0, 0, 1.75, 4], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 1.75], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 1.75], "texture": "#0"} + } + }, + { + "from": [14.25, 19, 16], + "to": [15.75, 22.5, 17.25], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 19, 14.5]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 1.25, 3.5], "texture": "#0"}, + "south": {"uv": [0, 0, 1.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 1.25, 3.5], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 1.25], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 1.25], "texture": "#0"} + } + }, + { + "from": [14.25, 22.5, 16.5], + "to": [15.75, 26, 17.25], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 22.5, 14.5]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0.75, 3.5], "texture": "#0"}, + "south": {"uv": [0, 0, 1.5, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0.75, 3.5], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 0.75], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 0.75], "texture": "#0"} + } + }, + { + "from": [14.25, 0, 14], + "to": [15.75, 7.5, 17.75], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 0, 15]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 7.5], "texture": "#0"}, + "east": {"uv": [0, 0, 3.75, 7.5], "texture": "#0"}, + "south": {"uv": [0, 0, 1.5, 7.5], "texture": "#0"}, + "west": {"uv": [0, 0, 3.75, 7.5], "texture": "#0"}, + "up": {"uv": [0, 0, 1.5, 3.75], "texture": "#0"}, + "down": {"uv": [0, 0, 1.5, 3.75], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [10, 6, 1], + "translation": [-8.5, 13.75, -2.25], + "scale": [1.07, 1.12, 1] + }, + "thirdperson_lefthand": { + "rotation": [10, 6, 1], + "translation": [7.5, 14, -3.75], + "scale": [1.07, 1.12, 1] + }, + "firstperson_righthand": { + "rotation": [-28, -21, -5], + "translation": [-0.5, 4, -6], + "scale": [0.8, 0.8, 0.8] + }, + "firstperson_lefthand": { + "rotation": [-28, -21, -5], + "translation": [10, 2.25, -0.5], + "scale": [0.8, 0.8, 0.8] + }, + "ground": { + "rotation": [0, 0, 90], + "translation": [1, -3.5, -1.25], + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [-48, -46, -87], + "translation": [2.25, -0.75, 0], + "scale": [0.6, 0.6, 0.6] + }, + "fixed": { + "rotation": [92, 135, -88], + "translation": [-2.5, -3.5, 0.5], + "scale": [0.6, 0.6, 0.6] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/bastion_piercer.json b/src/main/resources/assets/minecraft/models/weapons/bastion_piercer.json new file mode 100644 index 0000000..45f6573 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/bastion_piercer.json @@ -0,0 +1,304 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "4": "block/iron_block", + "8": "item/spear_head", + "11": "block/obsidian", + "particle": "block/acacia_door_bottom" + }, + "elements": [ + { + "from": [7.6, 11.6, 7.7], + "to": [8.6, 12.2, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8.3, 0]}, + "faces": { + "north": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "east": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "south": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "west": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "up": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "down": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"} + } + }, + { + "from": [7.8, 12.2, 7.7], + "to": [8.4, 13.5, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8.3, 0]}, + "faces": { + "north": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "east": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "south": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "west": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "up": {"uv": [1, 1, 11.5, 12.1], "rotation": 270, "texture": "#4"}, + "down": {"uv": [1, 1, 11.5, 12.1], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [7.705, 14, 6.7], + "to": [8.515, 17.6, 9.4875], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "east": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "south": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "west": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "up": {"uv": [16, 15.5, 0, 1], "rotation": 270, "texture": "#8"}, + "down": {"uv": [16, 15.5, 0, 1], "rotation": 90, "texture": "#8"} + } + }, + { + "from": [7.5, 14.3, 7], + "to": [8.7, 17.3, 9.15], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "east": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "south": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "west": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "up": {"uv": [16, 15.5, 0, 1], "rotation": 270, "texture": "#8"}, + "down": {"uv": [16, 15.5, 0, 1], "rotation": 90, "texture": "#8"} + } + }, + { + "from": [7.65, 13.4, 7.4], + "to": [8.55, 14, 8.85], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "east": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "south": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "west": {"uv": [16, 15.5, 0, 1], "texture": "#8"}, + "up": {"uv": [16, 15.5, 0, 1], "rotation": 270, "texture": "#8"}, + "down": {"uv": [16, 15.5, 0, 1], "rotation": 90, "texture": "#8"} + } + }, + { + "from": [7.7, 12.2, 7.8], + "to": [8.5, 14, 8.4], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8.3, 0]}, + "faces": { + "north": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "east": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "south": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "west": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "up": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "down": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"} + } + }, + { + "from": [7.7, 11.6, 7.6], + "to": [8.5, 12.2, 8.6], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8.3, 0]}, + "faces": { + "north": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "east": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "south": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "west": {"uv": [1, 1, 11.5, 12.1], "texture": "#4"}, + "up": {"uv": [1, 1, 11.5, 12.1], "rotation": 270, "texture": "#4"}, + "down": {"uv": [1, 1, 11.5, 12.1], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [7.6995, 12, 18.2], + "to": [8.4995, 15.483, 18.4], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [4.4, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.698, 12, 17.8], + "to": [8.498, 15, 18.3], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [4.4, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.5, 11.9, 17.9], + "to": [8.7, 14.615, 18], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [2.7, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.505, 11.9, 17.7], + "to": [8.701, 14.325, 17.9], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [2.7, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.498, 11.9, 17.4], + "to": [8.687, 14.1, 17.7], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [4.4, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.704, 18.2, -3.45], + "to": [8.504, 21.35, -3], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [0, 0, 4.4, 16], "texture": "#8"}, + "east": {"uv": [0, 0, 4.4, 16], "texture": "#8"}, + "south": {"uv": [0, 0, 4.4, 16], "texture": "#8"}, + "west": {"uv": [0, 0, 4.4, 16], "texture": "#8"}, + "up": {"uv": [0, 0, 4.4, 16], "texture": "#8"}, + "down": {"uv": [0, 0, 4.4, 16], "texture": "#8"} + } + }, + { + "from": [7.7, 21, -3.45], + "to": [8.5, 21.55, -3.2], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [4.4, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.506, 18.1, -3.05], + "to": [8.701, 20.8, -2.943], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [2.7, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.5, 18.1, -3], + "to": [8.7, 20.655, -2.8], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [2.7, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.499, 18.1, -2.85], + "to": [8.697, 20.25, -2.4], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [2.7, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [2.7, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.501, 18.3, -2.85], + "to": [8.691, 19.45, -1.6], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, -7.6, 0]}, + "faces": { + "north": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [4.4, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.699, 21.5, -0.6204], + "to": [8.499, 22.31, -0.4904], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, -0.2, 0]}, + "faces": { + "north": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "east": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "south": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "west": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "up": {"uv": [4.4, 16, 0, 0], "texture": "#8"}, + "down": {"uv": [4.4, 16, 0, 0], "texture": "#8"} + } + }, + { + "from": [7.75, -16, 7.75], + "to": [8.45, 11.75, 8.45], + "faces": { + "north": {"uv": [4.4, 0, 5.2, 16], "texture": "#11"}, + "east": {"uv": [4.4, 0, 5.2, 16], "texture": "#11"}, + "south": {"uv": [4.4, 0, 5.2, 16], "texture": "#11"}, + "west": {"uv": [4.4, 0, 5.2, 16], "texture": "#11"}, + "up": {"uv": [4.4, 0, 5.2, 16], "texture": "#11"}, + "down": {"uv": [4.4, 0, 5.2, 16], "texture": "#11"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [2, 172, -2], + "translation": [-0.5, 19.25, 2], + "scale": [1.5, 1.5, 1.5] + }, + "thirdperson_lefthand": { + "rotation": [2, 172, -2], + "translation": [-0.5, 19.25, 2], + "scale": [1.5, 1.5, 1.5] + }, + "firstperson_righthand": { + "rotation": [-71, 172, 7], + "translation": [3.5, 4.75, -4.25] + }, + "firstperson_lefthand": { + "rotation": [-71, 172, 7], + "translation": [3.5, 4.75, -4.25] + }, + "ground": { + "rotation": [0, 45, 90], + "translation": [0, 2.5, 0] + }, + "gui": { + "rotation": [94, -49, 86], + "translation": [-2.25, 2.75, 0], + "scale": [0.75, 0.75, 0.75] + }, + "fixed": { + "rotation": [94, -49, 86], + "translation": [-2.25, 2.75, 0], + "scale": [0.75, 0.7, 0.75] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/icicle_crossbow.json b/src/main/resources/assets/minecraft/models/weapons/icicle_crossbow.json new file mode 100644 index 0000000..2e1fd14 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/icicle_crossbow.json @@ -0,0 +1,405 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "16": "minecraft:block/anvil", + "98": "minecraft:block/blue_ice", + "272": "minecraft:block/deepslate_bricks", + "339": "minecraft:block/frosted_ice_0", + "558": "minecraft:block/packed_ice", + "756": "minecraft:block/spruce_planks", + "particle": "minecraft:block/acacia_door_bottom" + }, + "elements": [ + { + "from": [6.5, 4.5, -11], + "to": [9, 7, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 2.5], "texture": "#339"}, + "east": {"uv": [0, 0, 16, 2.5], "texture": "#339"}, + "south": {"uv": [0, 0, 2.5, 2.5], "texture": "#339"}, + "west": {"uv": [0, 0, 16, 2.5], "texture": "#339"}, + "up": {"uv": [0, 0, 2.5, 16], "texture": "#339"}, + "down": {"uv": [0, 0, 2.5, 16], "texture": "#339"} + } + }, + { + "from": [4, 4, -12.5], + "to": [11.5, 7.5, -10], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 7.5, 3.5], "texture": "#558"}, + "east": {"uv": [0, 0, 2.5, 3.5], "texture": "#558"}, + "south": {"uv": [0, 0, 7.5, 3.5], "texture": "#558"}, + "west": {"uv": [0, 0, 2.5, 3.5], "texture": "#558"}, + "up": {"uv": [0, 0, 7.5, 2.5], "texture": "#558"}, + "down": {"uv": [0, 0, 7.5, 2.5], "texture": "#558"} + } + }, + { + "from": [10, 5.5, -15], + "to": [10.5, 6, -12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "east": {"uv": [0, 0, 2.5, 0.5], "texture": "#16"}, + "south": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "west": {"uv": [0, 0, 2.5, 0.5], "texture": "#16"}, + "up": {"uv": [0, 0, 0.5, 2.5], "texture": "#16"}, + "down": {"uv": [0, 0, 0.5, 2.5], "texture": "#16"} + } + }, + { + "from": [5, 5.5, -15], + "to": [5.5, 6, -12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "east": {"uv": [0, 0, 2.5, 0.5], "texture": "#16"}, + "south": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "west": {"uv": [0, 0, 2.5, 0.5], "texture": "#16"}, + "up": {"uv": [0, 0, 0.5, 2.5], "texture": "#16"}, + "down": {"uv": [0, 0, 0.5, 2.5], "texture": "#16"} + } + }, + { + "from": [0.5, 7, -10], + "to": [8, 9, -8], + "rotation": {"angle": 22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "down": {"uv": [0, 0, 7.5, 2], "texture": "#98"} + } + }, + { + "from": [6, 7, -16], + "to": [13.5, 9, -14], + "rotation": {"angle": -22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "down": {"uv": [0, 0, 7.5, 2], "texture": "#98"} + } + }, + { + "from": [-7.5, 7, -5.5], + "to": [-5.5, 9, -0.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [-7.5, 7, -3.5], + "to": [-5.5, 9, 1.5], + "rotation": {"angle": -22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [19.5, 7, 2.5], + "to": [21.5, 9, 7.5], + "rotation": {"angle": 22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [21.5, 7, -1.5], + "to": [23.5, 9, 0.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [-8, 7, -1.5], + "to": [-6, 9, 0.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [-6, 8, -0.5], + "to": [21.5, 8.5, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 16, 0.5], "texture": "#16"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "south": {"uv": [0, 0, 16, 0.5], "texture": "#16"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "up": {"uv": [0, 0, 0.5, 16], "rotation": 90, "texture": "#16"}, + "down": {"uv": [0, 0, 0.5, 16], "rotation": 270, "texture": "#16"} + } + }, + { + "from": [16.5, 7, 5.5], + "to": [18.5, 9, 10.5], + "rotation": {"angle": 45, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [6, 4.49, 15.5], + "to": [9.5, 8, 18.5], + "rotation": {"angle": 0, "axis": "z", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 3.51, 3.5], "rotation": 90, "texture": "#272"}, + "east": {"uv": [0, 0, 3.51, 3], "rotation": 270, "texture": "#272"}, + "south": {"uv": [0, 0, 3.51, 3.5], "rotation": 270, "texture": "#272"}, + "west": {"uv": [0, 0, 3.51, 3], "rotation": 270, "texture": "#272"}, + "up": {"uv": [0, 0, 3, 3.5], "rotation": 270, "texture": "#272"}, + "down": {"uv": [0, 0, 3, 3.5], "rotation": 270, "texture": "#272"} + } + }, + { + "from": [7, 7.5, 16.5], + "to": [8, 10.5, 17.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 3, 1], "rotation": 90, "texture": "#272"}, + "east": {"uv": [0, 0, 3, 1], "rotation": 270, "texture": "#272"}, + "south": {"uv": [0, 0, 3, 1], "rotation": 270, "texture": "#272"}, + "west": {"uv": [0, 0, 3, 1], "rotation": 270, "texture": "#272"}, + "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#272"}, + "down": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#272"} + } + }, + { + "from": [6.5, 3.5, 18], + "to": [9, 7, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 3.5], "texture": "#756"}, + "east": {"uv": [0, 0, 5, 3.5], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 3.5], "texture": "#756"}, + "west": {"uv": [0, 0, 5, 3.5], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 5], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 5], "texture": "#756"} + } + }, + { + "from": [6.505, 16.5, 8.5], + "to": [8.995, 17.5, 9.99], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -1.75]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#272"}, + "east": {"uv": [0, 0, 1.49, 1], "texture": "#272"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#272"}, + "west": {"uv": [0, 0, 1.49, 1], "texture": "#272"}, + "up": {"uv": [0, 0, 2.49, 1.49], "texture": "#272"}, + "down": {"uv": [0, 0, 2.49, 1.49], "texture": "#272"} + } + }, + { + "from": [6.505, 20, 12.5], + "to": [8.995, 21, 13.99], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -2.5]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "east": {"uv": [0, 0, 1.49, 1], "texture": "#756"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "west": {"uv": [0, 0, 1.49, 1], "texture": "#756"}, + "up": {"uv": [0, 0, 2.49, 1.49], "texture": "#756"}, + "down": {"uv": [0, 0, 2.49, 1.49], "texture": "#756"} + } + }, + { + "from": [6.505, 21.5, 15.5], + "to": [8.995, 22.5, 16.99], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -2.5]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "east": {"uv": [0, 0, 1.49, 1], "texture": "#756"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "west": {"uv": [0, 0, 1.49, 1], "texture": "#756"}, + "up": {"uv": [0, 0, 2.49, 1.49], "texture": "#756"}, + "down": {"uv": [0, 0, 2.49, 1.49], "texture": "#756"} + } + }, + { + "from": [6.505, 23, 18], + "to": [8.995, 24, 19.5], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -2.25]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "east": {"uv": [0, 0, 1.5, 1], "texture": "#756"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "west": {"uv": [0, 0, 1.5, 1], "texture": "#756"}, + "up": {"uv": [0, 0, 2.49, 1.5], "texture": "#756"}, + "down": {"uv": [0, 0, 2.49, 1.5], "texture": "#756"} + } + }, + { + "from": [6.5, 2.5, 23], + "to": [9, 7, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 4.5], "texture": "#756"}, + "east": {"uv": [0, 0, 3, 4.5], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 4.5], "texture": "#756"}, + "west": {"uv": [0, 0, 3, 4.5], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 3], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 3], "texture": "#756"} + } + }, + { + "from": [6.5, 1.5, 26], + "to": [9, 7, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 5.5], "texture": "#756"}, + "east": {"uv": [0, 0, 3, 5.5], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 5.5], "texture": "#756"}, + "west": {"uv": [0, 0, 3, 5.5], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 3], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 3], "texture": "#756"} + } + }, + { + "from": [6.5, 1, 29], + "to": [9, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 6], "texture": "#756"}, + "east": {"uv": [0, 0, 3, 6], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 6], "texture": "#756"}, + "west": {"uv": [0, 0, 3, 6], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 3], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 3], "texture": "#756"} + } + }, + { + "from": [6.5, 8, 25], + "to": [9, 8.5, 32], + "faces": { + "north": {"uv": [0, 0, 2.5, 0.5], "texture": "#756"}, + "east": {"uv": [0, 0, 7, 0.5], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 0.5], "texture": "#756"}, + "west": {"uv": [0, 0, 7, 0.5], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 7], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 7], "texture": "#756"} + } + }, + { + "from": [6.5, 7, 18.5], + "to": [9, 8, 32], + "faces": { + "north": {"uv": [0, 0, 2.5, 1], "texture": "#756"}, + "east": {"uv": [0, 0, 13.5, 1], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 1], "texture": "#756"}, + "west": {"uv": [0, 0, 13.5, 1], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 13.5], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 13.5], "texture": "#756"} + } + }, + { + "from": [5.5, 5.5, -15], + "to": [10, 6, -14.5], + "faces": { + "north": {"uv": [0, 0, 4.5, 0.5], "texture": "#16"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "south": {"uv": [0, 0, 4.5, 0.5], "texture": "#16"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "up": {"uv": [0, 0, 4.5, 0.5], "texture": "#16"}, + "down": {"uv": [0, 0, 4.5, 0.5], "texture": "#16"} + } + }, + { + "from": [6.5, 7, -10], + "to": [7.5, 7.5, 15.5], + "faces": { + "north": {"uv": [0, 0, 1, 0.5], "texture": "#339"}, + "east": {"uv": [0, 0, 16, 0.5], "texture": "#339"}, + "south": {"uv": [0, 0, 1, 0.5], "texture": "#339"}, + "west": {"uv": [0, 0, 16, 0.5], "texture": "#339"}, + "up": {"uv": [0, 0, 1, 16], "texture": "#339"}, + "down": {"uv": [0, 0, 1, 16], "texture": "#339"} + } + }, + { + "from": [8, 7, -10], + "to": [9, 7.5, 15.5], + "faces": { + "north": {"uv": [0, 0, 1, 0.5], "texture": "#339"}, + "east": {"uv": [0, 0, 16, 0.5], "texture": "#339"}, + "south": {"uv": [0, 0, 1, 0.5], "texture": "#339"}, + "west": {"uv": [0, 0, 16, 0.5], "texture": "#339"}, + "up": {"uv": [0, 0, 1, 16], "texture": "#339"}, + "down": {"uv": [0, 0, 1, 16], "texture": "#339"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [9, -1, 0], + "translation": [0.25, 3.5, -2.75], + "scale": [0.8, 0.8, 0.8] + }, + "thirdperson_lefthand": { + "rotation": [9, -1, 0], + "translation": [0.25, 3.5, -2.75], + "scale": [0.8, 0.8, 0.8] + }, + "firstperson_righthand": { + "translation": [3.5, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "translation": [3.5, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [90, -45, 0], + "translation": [0, -0.75, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [-90, 134, 0], + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/icicle_crossbow_charged.json b/src/main/resources/assets/minecraft/models/weapons/icicle_crossbow_charged.json new file mode 100644 index 0000000..5d0820d --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/icicle_crossbow_charged.json @@ -0,0 +1,469 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "25": "minecraft:block/anvil", + "108": "minecraft:block/blue_ice", + "283": "minecraft:block/deepslate_bricks", + "410": "minecraft:block/frosted_ice_0", + "412": "minecraft:block/iron_block", + "545": "minecraft:block/oak_planks", + "571": "minecraft:block/packed_ice", + "770": "minecraft:block/spruce_planks", + "particle": "minecraft:block/acacia_door_bottom" + }, + "elements": [ + { + "from": [6.5, 4.5, -11], + "to": [9, 7, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 2.5], "texture": "#410"}, + "east": {"uv": [0, 0, 16, 2.5], "texture": "#410"}, + "south": {"uv": [0, 0, 2.5, 2.5], "texture": "#410"}, + "west": {"uv": [0, 0, 16, 2.5], "texture": "#410"}, + "up": {"uv": [0, 0, 2.5, 16], "texture": "#410"}, + "down": {"uv": [0, 0, 2.5, 16], "texture": "#410"} + } + }, + { + "from": [4, 4, -12.5], + "to": [11.5, 7.5, -10], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 7.5, 3.5], "texture": "#571"}, + "east": {"uv": [0, 0, 2.5, 3.5], "texture": "#571"}, + "south": {"uv": [0, 0, 7.5, 3.5], "texture": "#571"}, + "west": {"uv": [0, 0, 2.5, 3.5], "texture": "#571"}, + "up": {"uv": [0, 0, 7.5, 2.5], "texture": "#571"}, + "down": {"uv": [0, 0, 7.5, 2.5], "texture": "#571"} + } + }, + { + "from": [10, 5.5, -15], + "to": [10.5, 6, -12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#25"}, + "east": {"uv": [0, 0, 2.5, 0.5], "texture": "#25"}, + "south": {"uv": [0, 0, 0.5, 0.5], "texture": "#25"}, + "west": {"uv": [0, 0, 2.5, 0.5], "texture": "#25"}, + "up": {"uv": [0, 0, 0.5, 2.5], "texture": "#25"}, + "down": {"uv": [0, 0, 0.5, 2.5], "texture": "#25"} + } + }, + { + "from": [5, 5.5, -15], + "to": [5.5, 6, -12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#25"}, + "east": {"uv": [0, 0, 2.5, 0.5], "texture": "#25"}, + "south": {"uv": [0, 0, 0.5, 0.5], "texture": "#25"}, + "west": {"uv": [0, 0, 2.5, 0.5], "texture": "#25"}, + "up": {"uv": [0, 0, 0.5, 2.5], "texture": "#25"}, + "down": {"uv": [0, 0, 0.5, 2.5], "texture": "#25"} + } + }, + { + "from": [0.5, 7, -10], + "to": [8, 9, -8], + "rotation": {"angle": 22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 7.5, 2], "texture": "#108"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "south": {"uv": [0, 0, 7.5, 2], "texture": "#108"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "up": {"uv": [0, 0, 7.5, 2], "texture": "#108"}, + "down": {"uv": [0, 0, 7.5, 2], "texture": "#108"} + } + }, + { + "from": [6, 7, -16], + "to": [13.5, 9, -14], + "rotation": {"angle": -22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 7.5, 2], "texture": "#108"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "south": {"uv": [0, 0, 7.5, 2], "texture": "#108"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "up": {"uv": [0, 0, 7.5, 2], "texture": "#108"}, + "down": {"uv": [0, 0, 7.5, 2], "texture": "#108"} + } + }, + { + "from": [-7.5, 7, -5.5], + "to": [-5.5, 9, -0.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#108"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#108"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#108"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#108"} + } + }, + { + "from": [-7.5, 7, -3.5], + "to": [-5.5, 9, 1.5], + "rotation": {"angle": -22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#108"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#108"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#108"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#108"} + } + }, + { + "from": [19.5, 7, 2.5], + "to": [21.5, 9, 7.5], + "rotation": {"angle": 22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#108"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#108"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#108"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#108"} + } + }, + { + "from": [21.5, 7, -1.5], + "to": [23.5, 9, 0.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 90, "texture": "#108"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 270, "texture": "#108"} + } + }, + { + "from": [-8, 7, -1.5], + "to": [-6, 9, 0.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 90, "texture": "#108"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 270, "texture": "#108"} + } + }, + { + "from": [16.5, 7, 5.5], + "to": [18.5, 9, 10.5], + "rotation": {"angle": 45, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#108"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#108"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#108"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#108"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#108"} + } + }, + { + "from": [6, 4.49, 15.5], + "to": [9.5, 8, 18.5], + "rotation": {"angle": 0, "axis": "z", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 3.51, 3.5], "rotation": 90, "texture": "#283"}, + "east": {"uv": [0, 0, 3.51, 3], "rotation": 270, "texture": "#283"}, + "south": {"uv": [0, 0, 3.51, 3.5], "rotation": 270, "texture": "#283"}, + "west": {"uv": [0, 0, 3.51, 3], "rotation": 270, "texture": "#283"}, + "up": {"uv": [0, 0, 3, 3.5], "rotation": 270, "texture": "#283"}, + "down": {"uv": [0, 0, 3, 3.5], "rotation": 270, "texture": "#283"} + } + }, + { + "from": [7, 7.5, 16.5], + "to": [8, 10.5, 17.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 3, 1], "rotation": 90, "texture": "#283"}, + "east": {"uv": [0, 0, 3, 1], "rotation": 270, "texture": "#283"}, + "south": {"uv": [0, 0, 3, 1], "rotation": 270, "texture": "#283"}, + "west": {"uv": [0, 0, 3, 1], "rotation": 270, "texture": "#283"}, + "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#283"}, + "down": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#283"} + } + }, + { + "from": [6.5, 3.5, 18], + "to": [9, 7, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 3.5], "texture": "#770"}, + "east": {"uv": [0, 0, 5, 3.5], "texture": "#770"}, + "south": {"uv": [0, 0, 2.5, 3.5], "texture": "#770"}, + "west": {"uv": [0, 0, 5, 3.5], "texture": "#770"}, + "up": {"uv": [0, 0, 2.5, 5], "texture": "#770"}, + "down": {"uv": [0, 0, 2.5, 5], "texture": "#770"} + } + }, + { + "from": [6.505, 16.5, 8.5], + "to": [8.995, 17.5, 9.99], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -1.75]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#283"}, + "east": {"uv": [0, 0, 1.49, 1], "texture": "#283"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#283"}, + "west": {"uv": [0, 0, 1.49, 1], "texture": "#283"}, + "up": {"uv": [0, 0, 2.49, 1.49], "texture": "#283"}, + "down": {"uv": [0, 0, 2.49, 1.49], "texture": "#283"} + } + }, + { + "from": [6.505, 20, 12.5], + "to": [8.995, 21, 13.99], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -2.5]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#770"}, + "east": {"uv": [0, 0, 1.49, 1], "texture": "#770"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#770"}, + "west": {"uv": [0, 0, 1.49, 1], "texture": "#770"}, + "up": {"uv": [0, 0, 2.49, 1.49], "texture": "#770"}, + "down": {"uv": [0, 0, 2.49, 1.49], "texture": "#770"} + } + }, + { + "from": [6.505, 21.5, 15.5], + "to": [8.995, 22.5, 16.99], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -2.5]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#770"}, + "east": {"uv": [0, 0, 1.49, 1], "texture": "#770"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#770"}, + "west": {"uv": [0, 0, 1.49, 1], "texture": "#770"}, + "up": {"uv": [0, 0, 2.49, 1.49], "texture": "#770"}, + "down": {"uv": [0, 0, 2.49, 1.49], "texture": "#770"} + } + }, + { + "from": [6.505, 23, 18], + "to": [8.995, 24, 19.5], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -2.25]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#770"}, + "east": {"uv": [0, 0, 1.5, 1], "texture": "#770"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#770"}, + "west": {"uv": [0, 0, 1.5, 1], "texture": "#770"}, + "up": {"uv": [0, 0, 2.49, 1.5], "texture": "#770"}, + "down": {"uv": [0, 0, 2.49, 1.5], "texture": "#770"} + } + }, + { + "from": [6.5, 2.5, 23], + "to": [9, 7, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 4.5], "texture": "#770"}, + "east": {"uv": [0, 0, 3, 4.5], "texture": "#770"}, + "south": {"uv": [0, 0, 2.5, 4.5], "texture": "#770"}, + "west": {"uv": [0, 0, 3, 4.5], "texture": "#770"}, + "up": {"uv": [0, 0, 2.5, 3], "texture": "#770"}, + "down": {"uv": [0, 0, 2.5, 3], "texture": "#770"} + } + }, + { + "from": [6.5, 1.5, 26], + "to": [9, 7, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 5.5], "texture": "#770"}, + "east": {"uv": [0, 0, 3, 5.5], "texture": "#770"}, + "south": {"uv": [0, 0, 2.5, 5.5], "texture": "#770"}, + "west": {"uv": [0, 0, 3, 5.5], "texture": "#770"}, + "up": {"uv": [0, 0, 2.5, 3], "texture": "#770"}, + "down": {"uv": [0, 0, 2.5, 3], "texture": "#770"} + } + }, + { + "from": [6.5, 1, 29], + "to": [9, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 6], "texture": "#770"}, + "east": {"uv": [0, 0, 3, 6], "texture": "#770"}, + "south": {"uv": [0, 0, 2.5, 6], "texture": "#770"}, + "west": {"uv": [0, 0, 3, 6], "texture": "#770"}, + "up": {"uv": [0, 0, 2.5, 3], "texture": "#770"}, + "down": {"uv": [0, 0, 2.5, 3], "texture": "#770"} + } + }, + { + "from": [6.5, 8, 25], + "to": [9, 8.5, 32], + "faces": { + "north": {"uv": [0, 0, 2.5, 0.5], "texture": "#770"}, + "east": {"uv": [0, 0, 7, 0.5], "texture": "#770"}, + "south": {"uv": [0, 0, 2.5, 0.5], "texture": "#770"}, + "west": {"uv": [0, 0, 7, 0.5], "texture": "#770"}, + "up": {"uv": [0, 0, 2.5, 7], "texture": "#770"}, + "down": {"uv": [0, 0, 2.5, 7], "texture": "#770"} + } + }, + { + "from": [6.5, 7, 18.5], + "to": [9, 8, 32], + "faces": { + "north": {"uv": [0, 0, 2.5, 1], "texture": "#770"}, + "east": {"uv": [0, 0, 13.5, 1], "texture": "#770"}, + "south": {"uv": [0, 0, 2.5, 1], "texture": "#770"}, + "west": {"uv": [0, 0, 13.5, 1], "texture": "#770"}, + "up": {"uv": [0, 0, 2.5, 13.5], "texture": "#770"}, + "down": {"uv": [0, 0, 2.5, 13.5], "texture": "#770"} + } + }, + { + "from": [5.5, 5.5, -15], + "to": [10, 6, -14.5], + "faces": { + "north": {"uv": [0, 0, 4.5, 0.5], "texture": "#25"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#25"}, + "south": {"uv": [0, 0, 4.5, 0.5], "texture": "#25"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#25"}, + "up": {"uv": [0, 0, 4.5, 0.5], "texture": "#25"}, + "down": {"uv": [0, 0, 4.5, 0.5], "texture": "#25"} + } + }, + { + "from": [6.5, 7, -10], + "to": [7.5, 7.5, 15.5], + "faces": { + "north": {"uv": [0, 0, 1, 0.5], "texture": "#410"}, + "east": {"uv": [0, 0, 16, 0.5], "texture": "#410"}, + "south": {"uv": [0, 0, 1, 0.5], "texture": "#410"}, + "west": {"uv": [0, 0, 16, 0.5], "texture": "#410"}, + "up": {"uv": [0, 0, 1, 16], "texture": "#410"}, + "down": {"uv": [0, 0, 1, 16], "texture": "#410"} + } + }, + { + "from": [8, 7, -10], + "to": [9, 7.5, 15.5], + "faces": { + "north": {"uv": [0, 0, 1, 0.5], "texture": "#410"}, + "east": {"uv": [0, 0, 16, 0.5], "texture": "#410"}, + "south": {"uv": [0, 0, 1, 0.5], "texture": "#410"}, + "west": {"uv": [0, 0, 16, 0.5], "texture": "#410"}, + "up": {"uv": [0, 0, 1, 16], "texture": "#410"}, + "down": {"uv": [0, 0, 1, 16], "texture": "#410"} + } + }, + { + "from": [-5.5, 7.5, 5], + "to": [15.5, 8, 5.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 0, 16, 0.5], "texture": "#25"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#25"}, + "south": {"uv": [0, 0, 16, 0.5], "texture": "#25"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#25"}, + "up": {"uv": [0, 0, 0.5, 16], "rotation": 270, "texture": "#25"}, + "down": {"uv": [0, 0, 0.5, 16], "rotation": 90, "texture": "#25"} + } + }, + { + "from": [15.5, 7.5, -15.5], + "to": [16, 8, 5.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#25"}, + "east": {"uv": [0, 0, 16, 0.5], "texture": "#25"}, + "south": {"uv": [0, 0, 0.5, 0.5], "texture": "#25"}, + "west": {"uv": [0, 0, 16, 0.5], "texture": "#25"}, + "up": {"uv": [0, 0, 0.5, 16], "texture": "#25"}, + "down": {"uv": [0, 0, 0.5, 16], "texture": "#25"} + } + }, + { + "from": [7, 7, -12.5], + "to": [8.5, 8.5, 14.5], + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#545"}, + "east": {"uv": [0, 0, 16, 1.5], "texture": "#545"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#545"}, + "west": {"uv": [0, 0, 16, 1.5], "texture": "#545"}, + "up": {"uv": [0, 0, 1.5, 16], "texture": "#545"}, + "down": {"uv": [0, 0, 1.5, 16], "texture": "#545"} + } + }, + { + "from": [6.5, 6.5, -14], + "to": [9, 9, -12.5], + "faces": { + "north": {"uv": [0, 0, 2.5, 2.5], "texture": "#412"}, + "east": {"uv": [0, 0, 1.5, 2.5], "texture": "#412"}, + "south": {"uv": [0, 0, 2.5, 2.5], "texture": "#412"}, + "west": {"uv": [0, 0, 1.5, 2.5], "texture": "#412"}, + "up": {"uv": [0, 0, 2.5, 1.5], "texture": "#412"}, + "down": {"uv": [0, 0, 2.5, 1.5], "texture": "#412"} + } + }, + { + "from": [7, 7, -15], + "to": [8.5, 8.5, -14], + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#412"}, + "east": {"uv": [0, 0, 1, 1.5], "texture": "#412"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#412"}, + "west": {"uv": [0, 0, 1, 1.5], "texture": "#412"}, + "up": {"uv": [0, 0, 1.5, 1], "texture": "#412"}, + "down": {"uv": [0, 0, 1.5, 1], "texture": "#412"} + } + }, + { + "from": [7.5, 7.5, -15.5], + "to": [8, 8, -15], + "faces": { + "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#412"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#412"}, + "south": {"uv": [0, 0, 0.5, 0.5], "texture": "#412"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#412"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#412"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#412"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [9, -1, 0], + "translation": [0.25, 3.5, -2.75], + "scale": [0.8, 0.8, 0.8] + }, + "thirdperson_lefthand": { + "rotation": [9, -1, 0], + "translation": [0.25, 3.5, -2.75], + "scale": [0.8, 0.8, 0.8] + }, + "firstperson_righthand": { + "rotation": [0, -8, 0], + "translation": [2.5, 2.75, -0.25], + "scale": [0.75, 0.75, 0.75] + }, + "firstperson_lefthand": { + "translation": [1.75, 2.75, -0.25], + "scale": [0.75, 0.75, 0.75] + }, + "ground": { + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [90, -45, 0], + "translation": [0, -0.75, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [-90, 134, 0], + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/icicle_crossbow_pulling_0.json b/src/main/resources/assets/minecraft/models/weapons/icicle_crossbow_pulling_0.json new file mode 100644 index 0000000..c455347 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/icicle_crossbow_pulling_0.json @@ -0,0 +1,419 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "7": "minecraft:block/anvil", + "16": "minecraft:block/anvil", + "98": "minecraft:block/blue_ice", + "272": "minecraft:block/deepslate_bricks", + "339": "minecraft:block/frosted_ice_0", + "558": "minecraft:block/packed_ice", + "756": "minecraft:block/spruce_planks", + "particle": "minecraft:block/acacia_door_bottom" + }, + "elements": [ + { + "from": [6.5, 4.5, -11], + "to": [9, 7, 18], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 2.5], "texture": "#339"}, + "east": {"uv": [0, 0, 16, 2.5], "texture": "#339"}, + "south": {"uv": [0, 0, 2.5, 2.5], "texture": "#339"}, + "west": {"uv": [0, 0, 16, 2.5], "texture": "#339"}, + "up": {"uv": [0, 0, 2.5, 16], "texture": "#339"}, + "down": {"uv": [0, 0, 2.5, 16], "texture": "#339"} + } + }, + { + "from": [4, 4, -12.5], + "to": [11.5, 7.5, -10], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 7.5, 3.5], "texture": "#558"}, + "east": {"uv": [0, 0, 2.5, 3.5], "texture": "#558"}, + "south": {"uv": [0, 0, 7.5, 3.5], "texture": "#558"}, + "west": {"uv": [0, 0, 2.5, 3.5], "texture": "#558"}, + "up": {"uv": [0, 0, 7.5, 2.5], "texture": "#558"}, + "down": {"uv": [0, 0, 7.5, 2.5], "texture": "#558"} + } + }, + { + "from": [10, 5.5, -15], + "to": [10.5, 6, -12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "east": {"uv": [0, 0, 2.5, 0.5], "texture": "#16"}, + "south": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "west": {"uv": [0, 0, 2.5, 0.5], "texture": "#16"}, + "up": {"uv": [0, 0, 0.5, 2.5], "texture": "#16"}, + "down": {"uv": [0, 0, 0.5, 2.5], "texture": "#16"} + } + }, + { + "from": [5, 5.5, -15], + "to": [5.5, 6, -12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "east": {"uv": [0, 0, 2.5, 0.5], "texture": "#16"}, + "south": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "west": {"uv": [0, 0, 2.5, 0.5], "texture": "#16"}, + "up": {"uv": [0, 0, 0.5, 2.5], "texture": "#16"}, + "down": {"uv": [0, 0, 0.5, 2.5], "texture": "#16"} + } + }, + { + "from": [0.5, 7, -10], + "to": [8, 9, -8], + "rotation": {"angle": 22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "down": {"uv": [0, 0, 7.5, 2], "texture": "#98"} + } + }, + { + "from": [6, 7, -16], + "to": [13.5, 9, -14], + "rotation": {"angle": -22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 7.5, 2], "texture": "#98"}, + "down": {"uv": [0, 0, 7.5, 2], "texture": "#98"} + } + }, + { + "from": [-7.5, 7, -5.5], + "to": [-5.5, 9, -0.5], + "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [-7.5, 7, -3.5], + "to": [-5.5, 9, 1.5], + "rotation": {"angle": -22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [19.5, 7, 2.5], + "to": [21.5, 9, 7.5], + "rotation": {"angle": 22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [21.5, 7, -1.5], + "to": [23.5, 9, 0.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [-8, 7, -1.5], + "to": [-6, 9, 0.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [-5.5, 8, 2], + "to": [10, 8.5, 2.5], + "rotation": {"angle": -22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 16, 0.5], "texture": "#7"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#7"}, + "south": {"uv": [0, 0, 16, 0.5], "texture": "#7"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#7"}, + "up": {"uv": [0, 0, 0.5, 16], "rotation": 90, "texture": "#7"}, + "down": {"uv": [0, 0, 0.5, 16], "rotation": 270, "texture": "#7"} + } + }, + { + "from": [4, 8, 8], + "to": [20, 8.5, 8.5], + "rotation": {"angle": 22.5, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 16, 0.5], "texture": "#7"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#7"}, + "south": {"uv": [0, 0, 16, 0.5], "texture": "#7"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#7"}, + "up": {"uv": [0, 0, 0.5, 16], "rotation": 90, "texture": "#7"}, + "down": {"uv": [0, 0, 0.5, 16], "rotation": 270, "texture": "#7"} + } + }, + { + "from": [16.5, 7, 5.5], + "to": [18.5, 9, 10.5], + "rotation": {"angle": 45, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "east": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#98"}, + "west": {"uv": [0, 0, 5, 2], "texture": "#98"}, + "up": {"uv": [0, 0, 5, 2], "rotation": 90, "texture": "#98"}, + "down": {"uv": [0, 0, 5, 2], "rotation": 270, "texture": "#98"} + } + }, + { + "from": [6, 4.49, 15.5], + "to": [9.5, 8, 18.5], + "rotation": {"angle": 0, "axis": "z", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 3.51, 3.5], "rotation": 90, "texture": "#272"}, + "east": {"uv": [0, 0, 3.51, 3], "rotation": 270, "texture": "#272"}, + "south": {"uv": [0, 0, 3.51, 3.5], "rotation": 270, "texture": "#272"}, + "west": {"uv": [0, 0, 3.51, 3], "rotation": 270, "texture": "#272"}, + "up": {"uv": [0, 0, 3, 3.5], "rotation": 270, "texture": "#272"}, + "down": {"uv": [0, 0, 3, 3.5], "rotation": 270, "texture": "#272"} + } + }, + { + "from": [7, 7.5, 16.5], + "to": [8, 10.5, 17.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 3, 1], "rotation": 90, "texture": "#272"}, + "east": {"uv": [0, 0, 3, 1], "rotation": 270, "texture": "#272"}, + "south": {"uv": [0, 0, 3, 1], "rotation": 270, "texture": "#272"}, + "west": {"uv": [0, 0, 3, 1], "rotation": 270, "texture": "#272"}, + "up": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#272"}, + "down": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#272"} + } + }, + { + "from": [6.5, 3.5, 18], + "to": [9, 7, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 3.5], "texture": "#756"}, + "east": {"uv": [0, 0, 5, 3.5], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 3.5], "texture": "#756"}, + "west": {"uv": [0, 0, 5, 3.5], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 5], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 5], "texture": "#756"} + } + }, + { + "from": [6.505, 16.5, 8.5], + "to": [8.995, 17.5, 9.99], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -1.75]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#272"}, + "east": {"uv": [0, 0, 1.49, 1], "texture": "#272"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#272"}, + "west": {"uv": [0, 0, 1.49, 1], "texture": "#272"}, + "up": {"uv": [0, 0, 2.49, 1.49], "texture": "#272"}, + "down": {"uv": [0, 0, 2.49, 1.49], "texture": "#272"} + } + }, + { + "from": [6.505, 20, 12.5], + "to": [8.995, 21, 13.99], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -2.5]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "east": {"uv": [0, 0, 1.49, 1], "texture": "#756"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "west": {"uv": [0, 0, 1.49, 1], "texture": "#756"}, + "up": {"uv": [0, 0, 2.49, 1.49], "texture": "#756"}, + "down": {"uv": [0, 0, 2.49, 1.49], "texture": "#756"} + } + }, + { + "from": [6.505, 21.5, 15.5], + "to": [8.995, 22.5, 16.99], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -2.5]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "east": {"uv": [0, 0, 1.49, 1], "texture": "#756"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "west": {"uv": [0, 0, 1.49, 1], "texture": "#756"}, + "up": {"uv": [0, 0, 2.49, 1.49], "texture": "#756"}, + "down": {"uv": [0, 0, 2.49, 1.49], "texture": "#756"} + } + }, + { + "from": [6.505, 23, 18], + "to": [8.995, 24, 19.5], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 0.5, -2.25]}, + "faces": { + "north": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "east": {"uv": [0, 0, 1.5, 1], "texture": "#756"}, + "south": {"uv": [0, 0, 2.49, 1], "texture": "#756"}, + "west": {"uv": [0, 0, 1.5, 1], "texture": "#756"}, + "up": {"uv": [0, 0, 2.49, 1.5], "texture": "#756"}, + "down": {"uv": [0, 0, 2.49, 1.5], "texture": "#756"} + } + }, + { + "from": [6.5, 2.5, 23], + "to": [9, 7, 26], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 4.5], "texture": "#756"}, + "east": {"uv": [0, 0, 3, 4.5], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 4.5], "texture": "#756"}, + "west": {"uv": [0, 0, 3, 4.5], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 3], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 3], "texture": "#756"} + } + }, + { + "from": [6.5, 1.5, 26], + "to": [9, 7, 29], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 5.5], "texture": "#756"}, + "east": {"uv": [0, 0, 3, 5.5], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 5.5], "texture": "#756"}, + "west": {"uv": [0, 0, 3, 5.5], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 3], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 3], "texture": "#756"} + } + }, + { + "from": [6.5, 1, 29], + "to": [9, 7, 32], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, -1.5]}, + "faces": { + "north": {"uv": [0, 0, 2.5, 6], "texture": "#756"}, + "east": {"uv": [0, 0, 3, 6], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 6], "texture": "#756"}, + "west": {"uv": [0, 0, 3, 6], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 3], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 3], "texture": "#756"} + } + }, + { + "from": [6.5, 8, 25], + "to": [9, 8.5, 32], + "faces": { + "north": {"uv": [0, 0, 2.5, 0.5], "texture": "#756"}, + "east": {"uv": [0, 0, 7, 0.5], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 0.5], "texture": "#756"}, + "west": {"uv": [0, 0, 7, 0.5], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 7], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 7], "texture": "#756"} + } + }, + { + "from": [6.5, 7, 18.5], + "to": [9, 8, 32], + "faces": { + "north": {"uv": [0, 0, 2.5, 1], "texture": "#756"}, + "east": {"uv": [0, 0, 13.5, 1], "texture": "#756"}, + "south": {"uv": [0, 0, 2.5, 1], "texture": "#756"}, + "west": {"uv": [0, 0, 13.5, 1], "texture": "#756"}, + "up": {"uv": [0, 0, 2.5, 13.5], "texture": "#756"}, + "down": {"uv": [0, 0, 2.5, 13.5], "texture": "#756"} + } + }, + { + "from": [5.5, 5.5, -15], + "to": [10, 6, -14.5], + "faces": { + "north": {"uv": [0, 0, 4.5, 0.5], "texture": "#16"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "south": {"uv": [0, 0, 4.5, 0.5], "texture": "#16"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#16"}, + "up": {"uv": [0, 0, 4.5, 0.5], "texture": "#16"}, + "down": {"uv": [0, 0, 4.5, 0.5], "texture": "#16"} + } + }, + { + "from": [6.5, 7, -10], + "to": [7.5, 7.5, 15.5], + "faces": { + "north": {"uv": [0, 0, 1, 0.5], "texture": "#339"}, + "east": {"uv": [0, 0, 16, 0.5], "texture": "#339"}, + "south": {"uv": [0, 0, 1, 0.5], "texture": "#339"}, + "west": {"uv": [0, 0, 16, 0.5], "texture": "#339"}, + "up": {"uv": [0, 0, 1, 16], "texture": "#339"}, + "down": {"uv": [0, 0, 1, 16], "texture": "#339"} + } + }, + { + "from": [8, 7, -10], + "to": [9, 7.5, 15.5], + "faces": { + "north": {"uv": [0, 0, 1, 0.5], "texture": "#339"}, + "east": {"uv": [0, 0, 16, 0.5], "texture": "#339"}, + "south": {"uv": [0, 0, 1, 0.5], "texture": "#339"}, + "west": {"uv": [0, 0, 16, 0.5], "texture": "#339"}, + "up": {"uv": [0, 0, 1, 16], "texture": "#339"}, + "down": {"uv": [0, 0, 1, 16], "texture": "#339"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [9, -1, 0], + "translation": [0.25, 3.5, -2.75], + "scale": [0.8, 0.8, 0.8] + }, + "thirdperson_lefthand": { + "rotation": [9, -1, 0], + "translation": [0.25, 3.5, -2.75], + "scale": [0.8, 0.8, 0.8] + }, + "firstperson_righthand": { + "translation": [3.5, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "translation": [3.5, 0, 0], + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [90, -45, 0], + "translation": [0, -0.75, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [-90, 134, 0], + "scale": [0.5, 0.5, 0.5] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/molten_hammer.json b/src/main/resources/assets/minecraft/models/weapons/molten_hammer.json new file mode 100644 index 0000000..025639d --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/molten_hammer.json @@ -0,0 +1,177 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "3": "minecraft:block/obsidian", + "20": "minecraft:block/anvil", + "333": "minecraft:block/fire_coral_block", + "435": "minecraft:block/lava_still", + "493": "minecraft:block/magma", + "particle": "minecraft:block/amethyst_block" + }, + "elements": [ + { + "from": [7.5, -11.5, 7], + "to": [9.5, 25.5, 9], + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#20"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#20"}, + "south": {"uv": [0, 0, 2, 16], "texture": "#20"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#20"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#20"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#20"} + } + }, + { + "from": [7, -13, 6.75], + "to": [10, -11, 9.25], + "faces": { + "north": {"uv": [0, 0, 3, 2], "texture": "#333"}, + "east": {"uv": [0, 0, 2.5, 2], "texture": "#333"}, + "south": {"uv": [0, 0, 3, 2], "texture": "#333"}, + "west": {"uv": [0, 0, 2.5, 2], "texture": "#333"}, + "up": {"uv": [0, 0, 3, 2.5], "texture": "#333"}, + "down": {"uv": [0, 0, 3, 2.5], "texture": "#333"} + } + }, + { + "from": [7, 0.5, 6.75], + "to": [10, 2.5, 9.25], + "faces": { + "north": {"uv": [0, 0, 3, 2], "texture": "#333"}, + "east": {"uv": [0, 0, 2.5, 2], "texture": "#333"}, + "south": {"uv": [0, 0, 3, 2], "texture": "#333"}, + "west": {"uv": [0, 0, 2.5, 2], "texture": "#333"}, + "up": {"uv": [0, 0, 3, 2.5], "texture": "#333"}, + "down": {"uv": [0, 0, 3, 2.5], "texture": "#333"} + } + }, + { + "from": [-0.5, 13.5, 3.5], + "to": [17.5, 23, 12.5], + "faces": { + "north": {"uv": [0, 0, 11, 2.5], "texture": "#493"}, + "east": {"uv": [0, 0, 2, 2.5], "texture": "#493"}, + "south": {"uv": [0, 0, 11, 2.5], "texture": "#493"}, + "west": {"uv": [3, 0, 3, 0], "texture": "#493"}, + "up": {"uv": [0, 0, 11, 2], "texture": "#493"}, + "down": {"uv": [0, 0, 11, 2], "texture": "#493"} + } + }, + { + "from": [-1, 12.5, 2.5], + "to": [2, 24, 13.5], + "faces": { + "north": {"uv": [0, 0, 2, 10.5], "texture": "#3"}, + "east": {"uv": [0, 0, 10, 10.5], "texture": "#3"}, + "south": {"uv": [0, 0, 2, 10.5], "texture": "#3"}, + "west": {"uv": [0, 0, 10, 10.5], "texture": "#3"}, + "up": {"uv": [0, 0, 2, 10], "texture": "#3"}, + "down": {"uv": [0, 0, 2, 10], "texture": "#3"} + } + }, + { + "from": [15, 12.5, 2.5], + "to": [18, 24, 13.5], + "faces": { + "north": {"uv": [0, 0, 2, 10.5], "texture": "#3"}, + "east": {"uv": [0, 0, 10, 10.5], "texture": "#3"}, + "south": {"uv": [0, 0, 2, 10.5], "texture": "#3"}, + "west": {"uv": [0, 0, 10, 10.5], "texture": "#3"}, + "up": {"uv": [0, 0, 2, 10], "texture": "#3"}, + "down": {"uv": [0, 0, 2, 10], "texture": "#3"} + } + }, + { + "from": [18.01, 14, 4], + "to": [18.01, 22.5, 12], + "faces": { + "north": {"uv": [0, 0, 2, 10.5], "texture": "#435"}, + "east": {"uv": [0, 0, 10, 10.5], "texture": "#435"}, + "south": {"uv": [0, 0, 2, 10.5], "texture": "#435"}, + "west": {"uv": [0, 0, 10, 10.5], "texture": "#435"}, + "up": {"uv": [0, 0, 2, 10], "texture": "#435"}, + "down": {"uv": [0, 0, 2, 10], "texture": "#435"} + } + }, + { + "from": [-1.01, 14, 4], + "to": [-1.01, 22.5, 12], + "faces": { + "north": {"uv": [0, 0, 2, 10.5], "texture": "#435"}, + "east": {"uv": [0, 0, 10, 10.5], "texture": "#435"}, + "south": {"uv": [0, 0, 2, 10.5], "texture": "#435"}, + "west": {"uv": [0, 0, 10, 10.5], "texture": "#435"}, + "up": {"uv": [0, 0, 2, 10], "texture": "#435"}, + "down": {"uv": [0, 0, 2, 10], "texture": "#435"} + } + }, + { + "from": [7.5, 13, 3], + "to": [9.5, 23.5, 13], + "faces": { + "north": {"uv": [0, 0, 2, 10.5], "texture": "#3"}, + "east": {"uv": [0, 0, 10, 10.5], "texture": "#3"}, + "south": {"uv": [0, 0, 2, 10.5], "texture": "#3"}, + "west": {"uv": [0, 0, 10, 10.5], "texture": "#3"}, + "up": {"uv": [0, 0, 2, 10], "texture": "#3"}, + "down": {"uv": [0, 0, 2, 10], "texture": "#3"} + } + }, + { + "from": [6.5, 12.5, 6], + "to": [10.5, 14, 10], + "faces": { + "north": {"uv": [0, 0, 4, 1.5], "texture": "#3"}, + "east": {"uv": [0, 0, 4, 1.5], "texture": "#3"}, + "south": {"uv": [0, 0, 4, 1.5], "texture": "#3"}, + "west": {"uv": [0, 0, 4, 1.5], "texture": "#3"}, + "up": {"uv": [0, 0, 4, 4], "texture": "#3"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#3"} + } + }, + { + "from": [6.5, 22.5, 6], + "to": [10.5, 24, 10], + "faces": { + "north": {"uv": [0, 0, 4, 1.5], "texture": "#3"}, + "east": {"uv": [0, 0, 4, 1.5], "texture": "#3"}, + "south": {"uv": [0, 0, 4, 1.5], "texture": "#3"}, + "west": {"uv": [0, 0, 4, 1.5], "texture": "#3"}, + "up": {"uv": [0, 0, 4, 4], "texture": "#3"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#3"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [-34, 94, 37], + "translation": [0, 8, 2.25], + "scale": [0.91, 0.91, 0.91] + }, + "thirdperson_lefthand": { + "rotation": [-34, 94, 37], + "translation": [0, 8, 2.25], + "scale": [0.91, 0.91, 0.91] + }, + "firstperson_righthand": { + "rotation": [0, 78, 0], + "translation": [5.75, 6.25, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 78, 0], + "translation": [5.75, 6.25, 0] + }, + "ground": { + "translation": [0, 6.75, 0], + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [0, 0, -45], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 0, 44], + "scale": [0.66, 0.66, 0.66] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/sonic_bow.json b/src/main/resources/assets/minecraft/models/weapons/sonic_bow.json new file mode 100644 index 0000000..91c26d1 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/sonic_bow.json @@ -0,0 +1,473 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "671": "minecraft:block/reinforced_deepslate_bottom", + "672": "minecraft:block/reinforced_deepslate_side", + "673": "minecraft:block/reinforced_deepslate_top", + "709": "minecraft:block/sculk_shrieker_bottom", + "863": "minecraft:block/white_wool", + "particle": "minecraft:block/acacia_door_bottom" + }, + "elements": [ + { + "from": [8.5, 12, 3], + "to": [9, 18, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [9, 13, 3], + "to": [9.5, 17, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [6, 13, 3], + "to": [6.5, 17, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [6.5, 13.5, 2.5], + "to": [7, 16.5, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 13, 4.5], + "to": [8.5, 14, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 16, 4.5], + "to": [8.5, 17, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [8.5, 13.5, 4.5], + "to": [9, 16.5, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [6.5, 13.5, 4.5], + "to": [7, 16.5, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [8.5, 13.5, 2.5], + "to": [9, 16.5, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 16, 2.5], + "to": [8.5, 17, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 13, 2.5], + "to": [8.5, 14, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [6.5, 12, 3], + "to": [7, 18, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [7, 16, 3], + "to": [8.5, 18, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"} + } + }, + { + "from": [7, 12, 3], + "to": [8.5, 14, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"} + } + }, + { + "from": [7.005, 4, 1.33], + "to": [8.495, 9.54, 2.83], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.49, 5.54], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 5.54], "texture": "#709"}, + "south": {"uv": [0, 0, 1.49, 5.54], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 5.54], "texture": "#709"}, + "up": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"} + } + }, + { + "from": [7, -1.715, -3.3], + "to": [8.5, 2.775, -1.8], + "rotation": {"angle": -45, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"} + } + }, + { + "from": [7.005, 9.24, 11.725], + "to": [8.495, 10.74, 15.715], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 3.99], "rotation": 90, "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "west": {"uv": [6, 7.5, 7.5, 11.49], "rotation": 270, "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 3.99], "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 3.99], "rotation": 180, "texture": "#709"} + } + }, + { + "from": [7, 27.16, -3.26], + "to": [8.5, 31.66, -1.76], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"} + } + }, + { + "from": [7.005, 19.18, 11.66], + "to": [8.495, 20.68, 15.66], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.49, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 4], "rotation": 270, "texture": "#709"}, + "south": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 4], "rotation": 90, "texture": "#709"}, + "up": {"uv": [0, 0, 1.49, 4], "rotation": 180, "texture": "#709"}, + "down": {"uv": [0, 0, 1.49, 4], "texture": "#709"} + } + }, + { + "from": [7, 26.275, 12], + "to": [8.5, 27.775, 14.5], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#709"} + } + }, + { + "from": [7.2, 26.475, 14.2], + "to": [8.3, 27.575, 16.3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#672"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#672"} + } + }, + { + "from": [7.2, 2.325, 14.2], + "to": [8.3, 3.425, 16.3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#672"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#672"} + } + }, + { + "from": [7, 2.15, 12], + "to": [8.5, 3.65, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#709"} + } + }, + { + "from": [7.005, 20.45, 1.33], + "to": [8.495, 25.95, 2.83], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.49, 5.5], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 5.5], "texture": "#709"}, + "south": {"uv": [0, 0, 1.49, 5.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 5.5], "texture": "#709"}, + "up": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"} + } + }, + { + "from": [7.5, 3.5, 13], + "to": [8, 27, 13.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 8, 4.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "east": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "south": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "west": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#863"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#863"} + } + }, + { + "from": [6.9, 7.4, 2.65], + "to": [8.6, 8.1, 4.85], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 1.9, -0.1], + "to": [8.6, 2.6, 2.1], + "rotation": {"angle": -45, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 7.15, 12.15], + "to": [8.6, 9.35, 12.85], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "rotation": 180, "texture": "#673"}, + "east": {"uv": [0, 0, 2, 0.5], "rotation": 90, "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "west": {"uv": [0, 0, 2, 0.5], "rotation": 270, "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "rotation": 180, "texture": "#673"} + } + }, + { + "from": [6.9, 20.9, -0.1], + "to": [8.6, 21.6, 2.1], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 24.9, -4.85], + "to": [8.6, 25.6, -2.65], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 20.15, 14.9], + "to": [8.6, 22.35, 15.6], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "rotation": 180, "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "rotation": 270, "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "rotation": 90, "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 0.5], "rotation": 180, "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"} + } + }, + { + "from": [7.1, 27.6, 12.6], + "to": [8.4, 28.15, 13.9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "east": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "south": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "west": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#671"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#671"} + } + }, + { + "from": [7.1, 1.85, 12.6], + "to": [8.4, 2.4, 13.9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "east": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "west": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [23, -7, 0], + "translation": [-0.5, -9.25, 0.25] + }, + "thirdperson_lefthand": { + "rotation": [23, -7, 0], + "translation": [-0.5, -9.25, 0.25] + }, + "firstperson_righthand": { + "rotation": [23, 21, 0], + "translation": [3.5, -2.5, -1.75] + }, + "firstperson_lefthand": { + "rotation": [23, 21, 0], + "translation": [3.5, -2.5, -1.75] + }, + "ground": { + "translation": [0, 2.75, 0] + }, + "gui": { + "rotation": [90, 50, 90], + "translation": [1, 6, 0], + "scale": [0.8, 0.8, 0.8] + }, + "fixed": { + "rotation": [90, 122, 90], + "translation": [-6.75, 3.75, 0], + "scale": [1.25, 1.25, 1.25] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/sonic_bow_pull.json b/src/main/resources/assets/minecraft/models/weapons/sonic_bow_pull.json new file mode 100644 index 0000000..e7aa0f2 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/sonic_bow_pull.json @@ -0,0 +1,566 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "533": "minecraft:block/oak_planks", + "671": "minecraft:block/reinforced_deepslate_bottom", + "672": "minecraft:block/reinforced_deepslate_side", + "673": "minecraft:block/reinforced_deepslate_top", + "709": "minecraft:block/sculk_shrieker_bottom", + "855": "minecraft:block/white_concrete", + "863": "minecraft:block/white_wool", + "particle": "minecraft:block/acacia_door_bottom" + }, + "elements": [ + { + "from": [8.5, 12, 3], + "to": [9, 18, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [9, 13, 3], + "to": [9.5, 17, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [6, 13, 3], + "to": [6.5, 17, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [6.5, 13.5, 2.5], + "to": [7, 16.5, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 13, 4.5], + "to": [8.5, 14, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 16, 4.5], + "to": [8.5, 17, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [8.5, 13.5, 4.5], + "to": [9, 16.5, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [6.5, 13.5, 4.5], + "to": [7, 16.5, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [8.5, 13.5, 2.5], + "to": [9, 16.5, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 16, 2.5], + "to": [8.5, 17, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 13, 2.5], + "to": [8.5, 14, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [6.5, 12, 3], + "to": [7, 18, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [7, 16, 3], + "to": [8.5, 18, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"} + } + }, + { + "from": [7, 12, 3], + "to": [8.5, 14, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"} + } + }, + { + "from": [7.005, 4, 1.33], + "to": [8.495, 9.54, 2.83], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.49, 5.54], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 5.54], "texture": "#709"}, + "south": {"uv": [0, 0, 1.49, 5.54], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 5.54], "texture": "#709"}, + "up": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"} + } + }, + { + "from": [7, -1.715, -3.3], + "to": [8.5, 2.775, -1.8], + "rotation": {"angle": -45, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"} + } + }, + { + "from": [7.005, 9.24, 11.725], + "to": [8.495, 10.74, 15.715], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 3.99], "rotation": 90, "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "west": {"uv": [6, 7.5, 7.5, 11.49], "rotation": 270, "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 3.99], "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 3.99], "rotation": 180, "texture": "#709"} + } + }, + { + "from": [7, 27.16, -3.26], + "to": [8.5, 31.66, -1.76], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"} + } + }, + { + "from": [7.005, 19.18, 11.66], + "to": [8.495, 20.68, 15.66], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.49, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 4], "rotation": 270, "texture": "#709"}, + "south": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 4], "rotation": 90, "texture": "#709"}, + "up": {"uv": [0, 0, 1.49, 4], "rotation": 180, "texture": "#709"}, + "down": {"uv": [0, 0, 1.49, 4], "texture": "#709"} + } + }, + { + "from": [7, 26.275, 12], + "to": [8.5, 27.775, 14.5], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#709"} + } + }, + { + "from": [7.2, 26.475, 14.2], + "to": [8.3, 27.575, 16.3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#672"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#672"} + } + }, + { + "from": [7.2, 2.325, 14.2], + "to": [8.3, 3.425, 16.3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#672"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#672"} + } + }, + { + "from": [7, 2.15, 12], + "to": [8.5, 3.65, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#709"} + } + }, + { + "from": [7.005, 20.45, 1.33], + "to": [8.495, 25.95, 2.83], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.49, 5.5], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 5.5], "texture": "#709"}, + "south": {"uv": [0, 0, 1.49, 5.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 5.5], "texture": "#709"}, + "up": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"} + } + }, + { + "from": [7.5, 8.5, 19.5], + "to": [8, 22, 20], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 8, 4.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 13.5], "texture": "#863"}, + "east": {"uv": [0, 0, 0.5, 13.5], "texture": "#863"}, + "south": {"uv": [0, 0, 0.5, 13.5], "texture": "#863"}, + "west": {"uv": [0, 0, 0.5, 13.5], "texture": "#863"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#863"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#863"} + } + }, + { + "from": [7.5, 7, 14.5], + "to": [8, 19.5, 15], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 8, 4.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 12.5], "texture": "#863"}, + "east": {"uv": [0, 0, 0.5, 12.5], "texture": "#863"}, + "south": {"uv": [0, 0, 0.5, 12.5], "texture": "#863"}, + "west": {"uv": [0, 0, 0.5, 12.5], "texture": "#863"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#863"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#863"} + } + }, + { + "from": [6.9, 7.4, 2.65], + "to": [8.6, 8.1, 4.85], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 1.9, -0.1], + "to": [8.6, 2.6, 2.1], + "rotation": {"angle": -45, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 7.15, 12.15], + "to": [8.6, 9.35, 12.85], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "rotation": 180, "texture": "#673"}, + "east": {"uv": [0, 0, 2, 0.5], "rotation": 90, "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "west": {"uv": [0, 0, 2, 0.5], "rotation": 270, "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "rotation": 180, "texture": "#673"} + } + }, + { + "from": [6.9, 20.9, -0.1], + "to": [8.6, 21.6, 2.1], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 24.9, -4.85], + "to": [8.6, 25.6, -2.65], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 20.15, 14.9], + "to": [8.6, 22.35, 15.6], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "rotation": 180, "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "rotation": 270, "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "rotation": 90, "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 0.5], "rotation": 180, "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"} + } + }, + { + "from": [7.1, 27.6, 12.6], + "to": [8.4, 28.15, 13.9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "east": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "south": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "west": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#671"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#671"} + } + }, + { + "from": [7.1, 1.85, 12.6], + "to": [8.4, 2.4, 13.9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "east": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "west": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"} + } + }, + { + "from": [16, 4.5, -3.5], + "to": [16.5, 5, 18], + "rotation": {"angle": 45, "axis": "z", "origin": [0, -0.5, -2]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#533"}, + "east": {"uv": [0, 0, 16, 1.5], "texture": "#533"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#533"}, + "west": {"uv": [0, 0, 16, 1.5], "texture": "#533"}, + "up": {"uv": [0, 0, 1.5, 16], "texture": "#533"}, + "down": {"uv": [0, 0, 1.5, 16], "texture": "#533"} + } + }, + { + "from": [16, 4.5, -4.5], + "to": [16.5, 5, -3.5], + "rotation": {"angle": 45, "axis": "z", "origin": [0, -0.5, -2]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "east": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "west": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#855"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#855"} + } + }, + { + "from": [16.16, 4.66, -4.84], + "to": [16.34, 4.84, -4.16], + "rotation": {"angle": 45, "axis": "z", "origin": [0, -0.5, -2]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "east": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "west": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#855"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#855"} + } + }, + { + "from": [7.5, 14, -4], + "to": [8, 15.5, -3.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.5, -2]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 1.5], "texture": "#855"}, + "east": {"uv": [0, 0, 0.5, 1.5], "texture": "#855"}, + "south": {"uv": [0, 0, 0.5, 1.5], "texture": "#855"}, + "west": {"uv": [0, 0, 0.5, 1.5], "texture": "#855"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#855"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#855"} + } + }, + { + "from": [7, 14.5, -4], + "to": [8.5, 15, -3.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.5, -2]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#855"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#855"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#855"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#855"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#855"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#855"} + } + }, + { + "from": [15.425, 4.425, 15.8], + "to": [16.325, 5.325, 17.2], + "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "east": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "west": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#855"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#855"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [0, -7, 0], + "translation": [-0.5, -9.25, 0.25] + }, + "thirdperson_lefthand": { + "rotation": [0, -7, 0], + "translation": [-0.5, -9.25, 0.25] + }, + "firstperson_righthand": { + "rotation": [23, 21, 0], + "translation": [3.5, -2.5, -1.75] + }, + "firstperson_lefthand": { + "rotation": [23, 21, 0], + "translation": [3.5, -2.5, -1.75] + }, + "ground": { + "translation": [0, 2.75, 0] + }, + "gui": { + "rotation": [90, 50, 90], + "translation": [1, 6, 0], + "scale": [0.8, 0.8, 0.8] + }, + "fixed": { + "rotation": [90, 122, 90], + "translation": [-6.75, 3.75, 0], + "scale": [1.25, 1.25, 1.25] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/sonic_bow_pull2.json b/src/main/resources/assets/minecraft/models/weapons/sonic_bow_pull2.json new file mode 100644 index 0000000..490bf3e --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/sonic_bow_pull2.json @@ -0,0 +1,566 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "533": "minecraft:block/oak_planks", + "671": "minecraft:block/reinforced_deepslate_bottom", + "672": "minecraft:block/reinforced_deepslate_side", + "673": "minecraft:block/reinforced_deepslate_top", + "709": "minecraft:block/sculk_shrieker_bottom", + "855": "minecraft:block/white_concrete", + "863": "minecraft:block/white_wool", + "particle": "minecraft:block/acacia_door_bottom" + }, + "elements": [ + { + "from": [8.5, 12, 3], + "to": [9, 18, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [9, 13, 3], + "to": [9.5, 17, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [6, 13, 3], + "to": [6.5, 17, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 4], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 4], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [6.5, 13.5, 2.5], + "to": [7, 16.5, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 13, 4.5], + "to": [8.5, 14, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 16, 4.5], + "to": [8.5, 17, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [8.5, 13.5, 4.5], + "to": [9, 16.5, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [6.5, 13.5, 4.5], + "to": [7, 16.5, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [8.5, 13.5, 2.5], + "to": [9, 16.5, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 3], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 16, 2.5], + "to": [8.5, 17, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [7, 13, 2.5], + "to": [8.5, 14, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "east": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 1], "texture": "#673"}, + "west": {"uv": [0, 0, 0.5, 1], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"} + } + }, + { + "from": [6.5, 12, 3], + "to": [7, 18, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "south": {"uv": [0, 0, 0.5, 6], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 6], "texture": "#673"}, + "up": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 0.5, 1.5], "texture": "#673"} + } + }, + { + "from": [7, 16, 3], + "to": [8.5, 18, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"} + } + }, + { + "from": [7, 12, 3], + "to": [8.5, 14, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "east": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "west": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#673"} + } + }, + { + "from": [7.005, 4, 1.33], + "to": [8.495, 9.54, 2.83], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.49, 5.54], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 5.54], "texture": "#709"}, + "south": {"uv": [0, 0, 1.49, 5.54], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 5.54], "texture": "#709"}, + "up": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"} + } + }, + { + "from": [7, -1.715, -3.3], + "to": [8.5, 2.775, -1.8], + "rotation": {"angle": -45, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 4.49], "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"} + } + }, + { + "from": [7.005, 9.24, 11.725], + "to": [8.495, 10.74, 15.715], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 3.99], "rotation": 90, "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "west": {"uv": [6, 7.5, 7.5, 11.49], "rotation": 270, "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 3.99], "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 3.99], "rotation": 180, "texture": "#709"} + } + }, + { + "from": [7, 27.16, -3.26], + "to": [8.5, 31.66, -1.76], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 4.5], "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"} + } + }, + { + "from": [7.005, 19.18, 11.66], + "to": [8.495, 20.68, 15.66], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.49, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 4], "rotation": 270, "texture": "#709"}, + "south": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 4], "rotation": 90, "texture": "#709"}, + "up": {"uv": [0, 0, 1.49, 4], "rotation": 180, "texture": "#709"}, + "down": {"uv": [0, 0, 1.49, 4], "texture": "#709"} + } + }, + { + "from": [7, 26.275, 12], + "to": [8.5, 27.775, 14.5], + "rotation": {"angle": 0, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#709"} + } + }, + { + "from": [7.2, 26.475, 14.2], + "to": [8.3, 27.575, 16.3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#672"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#672"} + } + }, + { + "from": [7.2, 2.325, 14.2], + "to": [8.3, 3.425, 16.3], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#672"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#672"} + } + }, + { + "from": [7, 2.15, 12], + "to": [8.5, 3.65, 14.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "rotation": 180, "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 2.5], "rotation": 270, "texture": "#709"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 2.5], "rotation": 90, "texture": "#709"}, + "up": {"uv": [0, 0, 1.5, 2.5], "rotation": 180, "texture": "#709"}, + "down": {"uv": [0, 0, 1.5, 2.5], "texture": "#709"} + } + }, + { + "from": [7.005, 20.45, 1.33], + "to": [8.495, 25.95, 2.83], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 15, -4]}, + "faces": { + "north": {"uv": [0, 0, 1.49, 5.5], "texture": "#709"}, + "east": {"uv": [0, 0, 1.5, 5.5], "texture": "#709"}, + "south": {"uv": [0, 0, 1.49, 5.5], "texture": "#709"}, + "west": {"uv": [0, 0, 1.5, 5.5], "texture": "#709"}, + "up": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"}, + "down": {"uv": [0, 0, 1.49, 1.5], "texture": "#709"} + } + }, + { + "from": [7.5, -1.5, 23.5], + "to": [8, 15, 24], + "rotation": {"angle": -45, "axis": "x", "origin": [0, 8, 4.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "east": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "south": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "west": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#863"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#863"} + } + }, + { + "from": [7.5, 11, 14], + "to": [8, 27.5, 14.5], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 8, 4.5]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "east": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "south": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "west": {"uv": [0, 0, 0.5, 16], "texture": "#863"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#863"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#863"} + } + }, + { + "from": [6.9, 7.4, 2.65], + "to": [8.6, 8.1, 4.85], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 1.9, -0.1], + "to": [8.6, 2.6, 2.1], + "rotation": {"angle": -45, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 7.15, 12.15], + "to": [8.6, 9.35, 12.85], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "rotation": 180, "texture": "#673"}, + "east": {"uv": [0, 0, 2, 0.5], "rotation": 90, "texture": "#673"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#673"}, + "west": {"uv": [0, 0, 2, 0.5], "rotation": 270, "texture": "#673"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#673"}, + "down": {"uv": [0, 0, 1.5, 0.5], "rotation": 180, "texture": "#673"} + } + }, + { + "from": [6.9, 20.9, -0.1], + "to": [8.6, 21.6, 2.1], + "rotation": {"angle": 22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 24.9, -4.85], + "to": [8.6, 25.6, -2.65], + "rotation": {"angle": 45, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#672"} + } + }, + { + "from": [6.9, 20.15, 14.9], + "to": [8.6, 22.35, 15.6], + "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 2], "rotation": 180, "texture": "#672"}, + "east": {"uv": [0, 0, 2, 0.5], "rotation": 270, "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 2], "texture": "#672"}, + "west": {"uv": [0, 0, 2, 0.5], "rotation": 90, "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 0.5], "rotation": 180, "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#672"} + } + }, + { + "from": [7.1, 27.6, 12.6], + "to": [8.4, 28.15, 13.9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "east": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "south": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "west": {"uv": [0, 0, 1.5, 0.75], "texture": "#671"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#671"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#671"} + } + }, + { + "from": [7.1, 1.85, 12.6], + "to": [8.4, 2.4, 13.9], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 11.5, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "east": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "south": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "west": {"uv": [0, 0, 1.5, 0.75], "texture": "#672"}, + "up": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"}, + "down": {"uv": [0, 0, 1.5, 1.5], "texture": "#672"} + } + }, + { + "from": [16, 4.5, 0.5], + "to": [16.5, 5, 24.5], + "rotation": {"angle": 45, "axis": "z", "origin": [0, -0.5, 2]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#533"}, + "east": {"uv": [0, 0, 16, 1.5], "texture": "#533"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#533"}, + "west": {"uv": [0, 0, 16, 1.5], "texture": "#533"}, + "up": {"uv": [0, 0, 1.5, 16], "texture": "#533"}, + "down": {"uv": [0, 0, 1.5, 16], "texture": "#533"} + } + }, + { + "from": [16, 4.5, -0.5], + "to": [16.5, 5, 0.5], + "rotation": {"angle": 45, "axis": "z", "origin": [0, -0.5, 2]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "east": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "west": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#855"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#855"} + } + }, + { + "from": [16.16, 4.66, -0.84], + "to": [16.34, 4.84, -0.16], + "rotation": {"angle": 45, "axis": "z", "origin": [0, -0.5, 2]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "east": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "west": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#855"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#855"} + } + }, + { + "from": [7.5, 14, 0], + "to": [8, 15.5, 0.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.5, 2]}, + "faces": { + "north": {"uv": [0, 0, 0.5, 1.5], "texture": "#855"}, + "east": {"uv": [0, 0, 0.5, 1.5], "texture": "#855"}, + "south": {"uv": [0, 0, 0.5, 1.5], "texture": "#855"}, + "west": {"uv": [0, 0, 0.5, 1.5], "texture": "#855"}, + "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#855"}, + "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#855"} + } + }, + { + "from": [7, 14.5, 0], + "to": [8.5, 15, 0.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -0.5, 2]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 0.5], "texture": "#855"}, + "east": {"uv": [0, 0, 0.5, 0.5], "texture": "#855"}, + "south": {"uv": [0, 0, 1.5, 0.5], "texture": "#855"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#855"}, + "up": {"uv": [0, 0, 1.5, 0.5], "texture": "#855"}, + "down": {"uv": [0, 0, 1.5, 0.5], "texture": "#855"} + } + }, + { + "from": [15.425, 4.425, 22.3], + "to": [16.325, 5.325, 23.7], + "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "east": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "south": {"uv": [0, 0, 1.5, 1.5], "texture": "#855"}, + "west": {"uv": [0, 0, 2, 1.5], "texture": "#855"}, + "up": {"uv": [0, 0, 1.5, 2], "texture": "#855"}, + "down": {"uv": [0, 0, 1.5, 2], "texture": "#855"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [0, -7, 0], + "translation": [-0.5, -9.25, 0.25] + }, + "thirdperson_lefthand": { + "rotation": [0, -7, 0], + "translation": [-0.5, -9.25, 0.25] + }, + "firstperson_righthand": { + "rotation": [23, 21, 0], + "translation": [3.5, -2.5, -1.75] + }, + "firstperson_lefthand": { + "rotation": [23, 21, 0], + "translation": [3.5, -2.5, -1.75] + }, + "ground": { + "translation": [0, 2.75, 0] + }, + "gui": { + "rotation": [90, 50, 90], + "translation": [1, 6, 0], + "scale": [0.8, 0.8, 0.8] + }, + "fixed": { + "rotation": [90, 122, 90], + "translation": [-6.75, 3.75, 0], + "scale": [1.25, 1.25, 1.25] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/steel_battleaxe.json b/src/main/resources/assets/minecraft/models/weapons/steel_battleaxe.json new file mode 100644 index 0000000..11194e9 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/steel_battleaxe.json @@ -0,0 +1,592 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "block/anvil", + "1": "block/iron_block", + "2": "block/stripped_dark_oak_log", + "particle": "block/anvil" + }, + "elements": [ + { + "from": [7.2, -13.5, 7.2], + "to": [8.8, 16.7, 8.8], + "faces": { + "north": {"uv": [2, 0.7, 15, 16], "texture": "#2"}, + "east": {"uv": [3, 0.7, 15, 16], "texture": "#2"}, + "south": {"uv": [3, 0.7, 15, 16], "texture": "#2"}, + "west": {"uv": [2, 0.7, 15, 16], "texture": "#2"}, + "up": {"uv": [2, 1, 15, 16], "texture": "#2"}, + "down": {"uv": [2, 1, 15, 16], "texture": "#2"} + } + }, + { + "from": [6.8, -15.8, 6.8], + "to": [9.2, -13.4, 9.2], + "faces": { + "north": {"uv": [0, 0, 11.2, 12.2], "texture": "#1"}, + "east": {"uv": [2, 2, 15.7, 15.9], "texture": "#1"}, + "south": {"uv": [2, 0.2, 15.8, 16], "texture": "#1"}, + "west": {"uv": [5, 3.8, 12.5, 13.4], "texture": "#1"}, + "up": {"uv": [2, 3, 13, 14], "texture": "#1"}, + "down": {"uv": [2, 3, 14, 15], "texture": "#1"} + } + }, + { + "from": [7.05, -11.55, 7.05], + "to": [8.95, -11.15, 8.95], + "faces": { + "north": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "south": {"uv": [3, 3, 13.4, 14.45], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [7.05, -8.55, 7.05], + "to": [8.95, -8.15, 8.95], + "faces": { + "north": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "south": {"uv": [3, 3, 13.4, 14.45], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [7.05, -5.55, 7.05], + "to": [8.95, -5.15, 8.95], + "faces": { + "north": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "south": {"uv": [3, 3, 13.4, 14.45], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [7.05, -2.55, 7.05], + "to": [8.95, -2.15, 8.95], + "faces": { + "north": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "south": {"uv": [3, 3, 13.4, 14.45], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [7.05, 1.45, 7.05], + "to": [8.95, 1.85, 8.95], + "faces": { + "north": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "south": {"uv": [3, 3, 13.4, 14.45], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [7.05, 4.45, 7.05], + "to": [8.95, 4.85, 8.95], + "faces": { + "north": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "south": {"uv": [3, 3, 13.4, 14.45], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [7.05, 8.45, 7.05], + "to": [8.95, 8.85, 8.95], + "faces": { + "north": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "south": {"uv": [3, 3, 13.4, 14.45], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [7.05, 12.45, 7.05], + "to": [8.95, 12.85, 8.95], + "faces": { + "north": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "south": {"uv": [3, 3, 13.4, 14.45], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 0.25], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [7.05, 16.25, 7.05], + "to": [8.95, 16.85, 8.95], + "faces": { + "north": {"uv": [0, 0, 1, 0.35], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 0.35], "texture": "#1"}, + "south": {"uv": [3, 3, 13.4, 14.55], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 0.35], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [7.6, 22.2, 7.6], + "to": [8.4, 25, 8.4], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4.9, 5.1, 13.6, 13.2], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [7.3, 25, 7.3], + "to": [8.7, 25.7, 8.7], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4.9, 5.1, 13.6, 11.85], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.65], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [7.35, 25.65, 7.35], + "to": [8.65, 26.35, 8.65], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4.9, 5.1, 13.6, 11.9], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.7], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [7.4, 26.3, 7.4], + "to": [8.6, 26.9, 8.6], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4.9, 5.1, 13.6, 11.9], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.7], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [7.45, 26.85, 7.45], + "to": [8.55, 27.35, 8.55], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4.9, 5.1, 13.6, 11.9], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.7], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [7.5, 27.3, 7.5], + "to": [8.5, 27.7, 8.5], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4.9, 5.1, 13.6, 11.9], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.7], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [7.55, 27.65, 7.55], + "to": [8.45, 27.95, 8.45], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4.9, 5.1, 13.6, 11.9], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.7], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [7.6, 27.9, 7.6], + "to": [8.4, 28.1, 8.4], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4.9, 5.1, 13.6, 11.9], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.7], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [7.7, 28.1, 7.7], + "to": [8.3, 28.2, 8.3], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4.9, 5.1, 13.6, 11.95], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.75], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [7.75, 28.05, 7.75], + "to": [8.25, 28.45, 8.25], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4.9, 5.1, 13.6, 12.15], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.95], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [7, 16.6, 7], + "to": [9, 22.3, 9], + "faces": { + "north": {"uv": [3, 4, 13, 14.85], "texture": "#0"}, + "east": {"uv": [2, 3, 14, 14.85], "texture": "#0"}, + "south": {"uv": [4, 3, 15, 14.85], "texture": "#0"}, + "west": {"uv": [2, 3, 13, 14.85], "texture": "#0"}, + "up": {"uv": [2, 3, 14, 14], "texture": "#0"}, + "down": {"uv": [2, 3, 13, 13], "texture": "#0"} + } + }, + { + "from": [-6, 15.5, 7.22], + "to": [1.8, 23.8, 8.79], + "rotation": {"angle": 0, "axis": "z", "origin": [2, 39, 0]}, + "faces": { + "north": {"uv": [4, 8, 13.15, 12.9], "rotation": 270, "texture": "#1"}, + "east": {"uv": [0, 0, 4.15, 0.785], "rotation": 90, "texture": "#1"}, + "south": {"uv": [3, 6, 13, 13], "rotation": 90, "texture": "#1"}, + "west": {"uv": [0, 11, 10.15, 12.785], "rotation": 90, "texture": "#1"}, + "up": {"uv": [0, 0, 0.785, 3.9], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3, 6.14, 9.085, 16], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-7.4, 17.4, 7.01], + "to": [-5.5, 22.1, 9.02], + "faces": { + "north": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, + "south": {"uv": [2, 2, 10.35, 9.95], "rotation": 90, "texture": "#0"}, + "west": {"uv": [0, 0, 2.35, 1], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, + "down": {"uv": [2, 2, 13, 14.95], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [-0.2, 15.6, 7.002], + "to": [1.7, 18.9, 9.012], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, + "south": {"uv": [1, 1, 12.65, 12.95], "rotation": 90, "texture": "#0"}, + "west": {"uv": [0, 0, 1.65, 1], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, + "down": {"uv": [2, 2, 13, 14.95], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [13.8, 20.3, 7.002], + "to": [17.2, 22.3, 9.012], + "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [2, 2, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [3, 2, 12.7, 13], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [2, 2, 13.7, 15], "texture": "#0"} + } + }, + { + "from": [-14.5, 5.1, 7.4999], + "to": [-11.1, 7, 8.4999], + "rotation": {"angle": -45, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [1, 1, 14.3, 14.15], "texture": "#0"}, + "west": {"uv": [0, 0, 0.5, 0.95], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [2, 2, 13.7, 14.5], "texture": "#0"} + } + }, + { + "from": [-14.5, 5.8, 7], + "to": [-11.1, 7.7, 9.005], + "rotation": {"angle": -45, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [1, 1, 14.3, 14.15], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.95], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [2, 2, 13.7, 15], "texture": "#0"} + } + }, + { + "from": [-15.3, 17.5, 7], + "to": [-13.3, 21.3, 9], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [2, 2, 14, 13.9], "texture": "#0"}, + "east": {"uv": [1, 2, 14, 14.9], "texture": "#0"}, + "south": {"uv": [2, 2, 13, 13.9], "texture": "#0"}, + "west": {"uv": [2, 2, 13, 13.9], "texture": "#0"}, + "up": {"uv": [3, 2, 15, 14], "texture": "#0"}, + "down": {"uv": [1, 2, 14, 15], "texture": "#0"} + } + }, + { + "from": [7.3, 25.2, 7.0001], + "to": [10.6, 27.2, 9.0001], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [2, 2, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [3, 2, 12.65, 13], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [2, 2, 13.65, 15], "texture": "#0"} + } + }, + { + "from": [-11, 10.7, 7.2], + "to": [-4.6, 18.5, 8.82], + "rotation": {"angle": -22.5, "axis": "z", "origin": [2, 0, 0]}, + "faces": { + "north": {"uv": [4, 6, 12.2, 12.9], "rotation": 180, "texture": "#1"}, + "east": {"uv": [0, 0, 0.875, 3.9], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3, 3, 11.2, 13], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0, 11, 6.875, 15], "rotation": 180, "texture": "#1"}, + "up": {"uv": [0, 0, 3.2, 0.875], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3, 6.14, 11.5, 16], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [4.9, 18.4, 7.21], + "to": [10.7, 26.2, 8.8], + "rotation": {"angle": 22.5, "axis": "z", "origin": [2, 0, 0]}, + "faces": { + "north": {"uv": [4, 8, 11.9, 12.9], "rotation": 180, "texture": "#1"}, + "east": {"uv": [0, 0, 0.795, 3.9], "rotation": 180, "texture": "#1"}, + "south": {"uv": [1, 9, 9.9, 16], "rotation": 180, "texture": "#1"}, + "west": {"uv": [0, 11, 6.795, 15], "rotation": 180, "texture": "#1"}, + "up": {"uv": [0, 0, 2.9, 0.795], "rotation": 180, "texture": "#1"}, + "down": {"uv": [1.3, 6.14, 11.2, 15.935], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [11, 20.2, 7.215], + "to": [18.8, 28.6, 8.815], + "rotation": {"angle": -45, "axis": "z", "origin": [2, 39, 0]}, + "faces": { + "north": {"uv": [4, 8, 13.2, 12.9], "rotation": 270, "texture": "#1"}, + "east": {"uv": [0, 0, 4.2, 0.85], "rotation": 90, "texture": "#1"}, + "south": {"uv": [1, 4, 12, 10], "rotation": 90, "texture": "#1"}, + "west": {"uv": [0, 11, 10.2, 12.85], "rotation": 90, "texture": "#1"}, + "up": {"uv": [0, 0, 0.85, 3.9], "rotation": 90, "texture": "#1"}, + "down": {"uv": [1.3, 6.14, 9.15, 16], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [8.6, 14, 7.205], + "to": [14, 17.1, 8.826], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [3.3, 5, 13, 11], "texture": "#1"}, + "east": {"uv": [2, 4, 10.86, 12.55], "texture": "#1"}, + "south": {"uv": [5, 6.45, 11, 11], "texture": "#1"}, + "west": {"uv": [4, 14, 13, 15], "texture": "#1"}, + "up": {"uv": [2, 2, 12.7, 14.86], "texture": "#1"}, + "down": {"uv": [5.3, 9.14, 13, 16], "texture": "#1"} + } + }, + { + "from": [-6.3, 19, 7.204], + "to": [-1, 22, 8.827], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [4, 3, 10.5, 6.65], "rotation": 90, "texture": "#1"}, + "east": {"uv": [0, 0, 1.5, 0.85], "rotation": 270, "texture": "#1"}, + "south": {"uv": [3, 5, 10.5, 12], "rotation": 270, "texture": "#1"}, + "west": {"uv": [0, 11, 7.5, 12.85], "rotation": 270, "texture": "#1"}, + "up": {"uv": [0, 0, 0.85, 2.65], "rotation": 270, "texture": "#1"}, + "down": {"uv": [1.3, 6.14, 9.15, 16], "rotation": 270, "texture": "#1"} + } + }, + { + "from": [2.1, 21.6, 7.06], + "to": [7.5, 25.4, 8.96], + "rotation": {"angle": 22.5, "axis": "z", "origin": [16, 39, 0]}, + "faces": { + "north": {"uv": [3, 3, 9.7, 10.85], "rotation": 180, "texture": "#1"}, + "east": {"uv": [4, 4, 10.95, 10.85], "rotation": 180, "texture": "#1"}, + "south": {"uv": [3, 2, 12.7, 11.85], "rotation": 180, "texture": "#1"}, + "west": {"uv": [1, 2, 11.95, 11.85], "rotation": 180, "texture": "#1"}, + "up": {"uv": [0, 0, 7.7, 9.95], "rotation": 180, "texture": "#1"}, + "down": {"uv": [4, 4, 10.7, 10.95], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [17, 16.8, 7.05], + "to": [22.3, 20.7, 8.94], + "rotation": {"angle": -22.5, "axis": "z", "origin": [16, 39, 0]}, + "faces": { + "north": {"uv": [2, 3, 14.95, 13.65], "rotation": 270, "texture": "#1"}, + "east": {"uv": [0, 0, 1.95, 0.945], "rotation": 90, "texture": "#1"}, + "south": {"uv": [6, 3, 12.95, 10.65], "rotation": 90, "texture": "#1"}, + "west": {"uv": [1, 2, 12.95, 11.945], "rotation": 90, "texture": "#1"}, + "up": {"uv": [0, 0, 0.945, 2.65], "rotation": 90, "texture": "#1"}, + "down": {"uv": [0, 0, 0.945, 2.65], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [7.2, 27.2, 7.5001], + "to": [10.6, 28.2, 8.5001], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [2, 2, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [3, 2, 12.7, 12.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0.5, 0.5], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [2, 2, 13.7, 14.5], "texture": "#0"} + } + }, + { + "from": [-14.5, 9.6, 7.499], + "to": [-13.2, 14.5, 8.499], + "rotation": {"angle": -22.5, "axis": "z", "origin": [20, 0, -20]}, + "faces": { + "north": {"uv": [2, 2, 16, 16], "texture": "#0"}, + "east": {"uv": [2, 2, 16, 16], "texture": "#0"}, + "south": {"uv": [2, 2, 11.65, 11.45], "texture": "#0"}, + "west": {"uv": [2, 2, 11.5, 11.45], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 0.65, 0.5], "texture": "#0"} + } + }, + { + "from": [-0.9, 15.4, 7.5], + "to": [1, 19.1, 8.505], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, + "south": {"uv": [1, 1, 12.85, 12.95], "rotation": 90, "texture": "#0"}, + "west": {"uv": [0, 0, 1.85, 0.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, + "down": {"uv": [2, 2, 12.5, 14.95], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [-8.2, 17.3, 7.5], + "to": [-6.05, 22.1, 8.51], + "faces": { + "north": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, + "south": {"uv": [1, 2, 11.4, 13.075], "rotation": 90, "texture": "#0"}, + "west": {"uv": [0, 0, 2.4, 0.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#0"}, + "down": {"uv": [2, 2, 12.5, 15.075], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [14.3, 21.3, 7.4999], + "to": [17.5, 23.28, 8.5099], + "rotation": {"angle": 45, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [2, 2, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [3, 2, 12.6, 12.99], "texture": "#0"}, + "west": {"uv": [0, 0, 0.5, 0.99], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [2, 2, 13.6, 14.5], "texture": "#0"} + } + }, + { + "from": [-8, 9.6, 7.004], + "to": [-4.7, 11.5, 9.004], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [1, 1, 14.25, 14.15], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 0.95], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [2, 2, 13.65, 15], "texture": "#0"} + } + }, + { + "from": [-8.3, 9, 7.5], + "to": [-4.7, 9.6, 8.5], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [1, 1, 14.4, 13.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0.5, 0.3], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "down": {"uv": [2, 2, 13.8, 14.5], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [26, -94, 19], + "translation": [0, 9.75, 2.75] + }, + "thirdperson_lefthand": { + "rotation": [26, 94, -7], + "translation": [0, 9.75, 5.25] + }, + "firstperson_righthand": { + "rotation": [0, -88, 0], + "translation": [3, 1, 0] + }, + "firstperson_lefthand": { + "rotation": [0, 89, 0], + "translation": [3.5, 0.75, 0] + }, + "ground": { + "translation": [0, 9.5, 0], + "scale": [0.5, 0.5, 0.5] + }, + "gui": { + "rotation": [0, 0, 33], + "translation": [2.25, 1, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 180, 30], + "translation": [-2.5, 0.75, 0], + "scale": [0.65, 0.65, 0.65] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/torpedo_harpoon.json b/src/main/resources/assets/minecraft/models/weapons/torpedo_harpoon.json new file mode 100644 index 0000000..7a1e064 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/torpedo_harpoon.json @@ -0,0 +1,705 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "5": "block/gold_block", + "6": "block/dark_prismarine", + "7": "block/prismarine", + "particle": "block/acacia_door_bottom" + }, + "elements": [ + { + "from": [7.5, -10, 7.5], + "to": [8.5, 10, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [0.3, 16, 1.3, 2.9], "texture": "#7"}, + "east": {"uv": [0.3, 16, 1.3, 2.9], "texture": "#7"}, + "south": {"uv": [1.3, 16, 0.4, 2.9], "texture": "#7"}, + "west": {"uv": [0.3, 16, 1.3, 2.9], "texture": "#7"}, + "up": {"uv": [0, 16, 1.3, 2.9], "texture": "#7"}, + "down": {"uv": [0, 16, 1.3, 2.9], "texture": "#7"} + } + }, + { + "from": [5, 10, 7.5], + "to": [11, 11, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [13.6, 13.7, 2.6, 2.2], "texture": "#5"}, + "east": {"uv": [2.6, 13.7, 13.6, 2.2], "texture": "#5"}, + "south": {"uv": [13.6, 2.2, 2.6, 13.7], "texture": "#5"}, + "west": {"uv": [13.6, 13.7, 2.6, 2.2], "texture": "#5"}, + "up": {"uv": [13.6, 2.2, 2.6, 13.7], "texture": "#5"}, + "down": {"uv": [2.6, 13.7, 13.6, 2.2], "texture": "#5"} + } + }, + { + "from": [14.05, 4.4125, 7.505], + "to": [17.05, 5.4125, 8.495], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2.39, 13.8, 13.1], "texture": "#5"}, + "east": {"uv": [1.55, 3.39, 8.24, 9.79], "texture": "#5"}, + "south": {"uv": [4.9, 4, 7.9, 5], "texture": "#5"}, + "west": {"uv": [3, 2, 3.99, 3], "texture": "#5"}, + "up": {"uv": [3, 0, 13.8, 11.1], "texture": "#5"}, + "down": {"uv": [0, 1, 13, 10.99], "texture": "#5"} + } + }, + { + "from": [-2.3, 10.55, 7.505], + "to": [0.45, 11.55, 8.495], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1, 1.89, 13, 12.1], "texture": "#5"}, + "east": {"uv": [4.55, 4.39, 11.24, 10.79], "texture": "#5"}, + "south": {"uv": [1.9, 2, 11.6, 8.7], "texture": "#5"}, + "west": {"uv": [6, 4, 13.59, 11.3], "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "texture": "#5"}, + "down": {"uv": [2, 1.5, 13.9, 13.49], "texture": "#5"} + } + }, + { + "from": [10.73, 8.55, 7.505], + "to": [11.73, 11.3, 8.495], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [13.6, 1.8, 2.5, 13.8], "rotation": 270, "texture": "#5"}, + "east": {"uv": [13.6, 13.8, 2.5, 1.8], "rotation": 90, "texture": "#5"}, + "south": {"uv": [13.6, 13.8, 2.5, 1.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [13.6, 1.8, 2.5, 13.8], "rotation": 90, "texture": "#5"}, + "up": {"uv": [13.6, 1.8, 2.5, 13.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.5, 1.8, 13.6, 13.8], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.5, 13.75, 7.505], + "to": [3.5, 16.5, 8.505], + "rotation": {"angle": 0, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 14.45, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.5], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.5], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-7.07, 15.55, 7.501], + "to": [-6.07, 17.2, 8.481], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.95, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-7.06, 17.15, 7.506], + "to": [-5.55, 18.6, 8.516], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.51], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.51], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.51], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13.01, 11.51], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-6.86, 17.35, 7.306], + "to": [-6.25, 19.2, 8.716], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.51], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.51], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.51], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13.01, 11.51], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-6.76, 15.55, 7.406], + "to": [-6.35, 17.4, 8.616], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.51], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.51], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.51], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13.01, 11.51], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.79, 14.55, 7.406], + "to": [3.2, 16.4, 8.616], + "rotation": {"angle": 0, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.51], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.51], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.51], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13.01, 11.51], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [10.89, 8.95, 7.406], + "to": [11.3, 10.7, 8.616], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1, 1.89, 13, 12.1], "rotation": 270, "texture": "#5"}, + "east": {"uv": [4.55, 4.39, 12, 10.8], "rotation": 90, "texture": "#5"}, + "south": {"uv": [1.9, 2, 11.6, 9.21], "rotation": 90, "texture": "#5"}, + "west": {"uv": [6, 4, 14.35, 11.31], "rotation": 90, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0.9, 0.5, 15, 13.01], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [16.54, 0.9, 7.406], + "to": [16.95, 3.48, 8.616], + "rotation": {"angle": 45, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1, 1.89, 13, 12.1], "rotation": 270, "texture": "#5"}, + "east": {"uv": [4.55, 4.39, 12, 10.8], "rotation": 90, "texture": "#5"}, + "south": {"uv": [1.9, 2, 11.6, 9.21], "rotation": 90, "texture": "#5"}, + "west": {"uv": [6, 4, 14.35, 11.31], "rotation": 90, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0.9, 0.5, 15, 13.01], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-7.05, 18.55, 7.505], + "to": [-6.05, 19.8, 8.495], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 12.95, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-7.055, 19.75, 7.504], + "to": [-6.555, 20.8, 8.494], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 10.7, 12.95, 1.8], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 10.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [16.25, 1.2, 7.505], + "to": [17.25, 3.2, 8.495], + "rotation": {"angle": 45, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1, 1.89, 13, 12.1], "rotation": 270, "texture": "#5"}, + "east": {"uv": [4.55, 4.39, 12, 10.78], "rotation": 90, "texture": "#5"}, + "south": {"uv": [1.9, 2, 11.6, 8.7], "rotation": 90, "texture": "#5"}, + "west": {"uv": [6, 4, 14.35, 11.29], "rotation": 90, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0.9, 0.5, 15, 12.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-5.935, 12.5, 7.505], + "to": [-4.935, 14.25, 8.495], + "rotation": {"angle": -45, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.3, 1.4, 14.3, 14.3], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.3, 1.4, 14.3, 14.3], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.3, 1.4, 14.3, 14.3], "rotation": 90, "texture": "#5"}, + "west": {"uv": [2.3, 1.4, 14.3, 14.3], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.3, 1.4, 14.3, 14.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [14.3, 1.4, 2.3, 14.3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.94, 14.45, 7.505], + "to": [3.94, 17.25, 8.495], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2, 2.49, 14.3, 14.4], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2, 2.7, 14.3, 14.4], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2, 2.7, 14.3, 14.4], "rotation": 90, "texture": "#5"}, + "west": {"uv": [2, 2.7, 14.3, 14.4], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2, 2, 14.3, 14.4], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2, 2.7, 14.3, 14.4], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [12.35, 13.9, 7.505], + "to": [13.35, 16.8, 8.495], + "rotation": {"angle": 0, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 14.6, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [20.83, 9.8, 7.5], + "to": [21.83, 11.05, 8.49], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 12.95, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [20.35, 11, 7.5025], + "to": [21.85, 12.35, 8.4925], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.5], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [21.05, 11.2, 7.3025], + "to": [21.65, 12.95, 8.6925], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.5], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [21.15, 9.8, 7.4025], + "to": [21.55, 11.55, 8.5925], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.5], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [12.7, 14.9, 7.4125], + "to": [13.1, 16.75, 8.6035], + "rotation": {"angle": 0, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.5], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3.2, 14.5, 7.4125], + "to": [3.6, 16.75, 8.6035], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2.39, 13.8, 13.1], "rotation": 270, "texture": "#5"}, + "east": {"uv": [1.55, 3.39, 9, 9.78], "rotation": 90, "texture": "#5"}, + "south": {"uv": [4.9, 4, 6.65, 5.5], "rotation": 90, "texture": "#5"}, + "west": {"uv": [3, 2, 4.75, 2.99], "rotation": 90, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0, 2, 0.99, 3.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-5.7, 12.2, 7.4125], + "to": [-5.3, 14.15, 8.6035], + "rotation": {"angle": -45, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2.39, 13.8, 13.1], "rotation": 270, "texture": "#5"}, + "east": {"uv": [1.55, 3.39, 9, 9.78], "rotation": 90, "texture": "#5"}, + "south": {"uv": [4.9, 4, 6.65, 5.5], "rotation": 90, "texture": "#5"}, + "west": {"uv": [3, 2, 4.75, 2.99], "rotation": 90, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0, 2, 0.99, 3.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [8.6, 10, 7.4125], + "to": [10.55, 10.4, 8.6035], + "rotation": {"angle": 0, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2.39, 13.8, 13.1], "rotation": 180, "texture": "#5"}, + "east": {"uv": [1.55, 3.39, 8.24, 10.29], "rotation": 180, "texture": "#5"}, + "south": {"uv": [4.9, 4, 6.65, 5.5], "rotation": 180, "texture": "#5"}, + "west": {"uv": [3, 2, 3.99, 3.5], "rotation": 180, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 180, "texture": "#5"}, + "down": {"uv": [0, 2, 1.75, 2.99], "rotation": 180, "texture": "#5"} + } + }, + { + "from": [5.4, 10, 7.4125], + "to": [7.55, 10.4, 8.6035], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1, 1.89, 13, 12.1], "rotation": 180, "texture": "#5"}, + "east": {"uv": [4.55, 4.39, 11.24, 11.29], "rotation": 180, "texture": "#5"}, + "south": {"uv": [1.9, 2, 11.6, 9.2], "rotation": 180, "texture": "#5"}, + "west": {"uv": [6, 4, 13.59, 11.8], "rotation": 180, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 180, "texture": "#5"}, + "down": {"uv": [0.9, 0.5, 15, 12.49], "rotation": 180, "texture": "#5"} + } + }, + { + "from": [20.85, 12.3, 7.505], + "to": [21.85, 13.55, 8.495], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 12.95, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [21.357, 13.5, 7.5025], + "to": [21.857, 14.55, 8.4925], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 10.7, 12.95, 1.8], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 10.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [7.5, 11, 7.5], + "to": [8.5, 18, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 1, 13.7, 12.6], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 13], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 11], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13, 11], "texture": "#5"} + } + }, + { + "from": [7, 18, 7.5], + "to": [9, 19.5, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.7, 11.5], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 13], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 11], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 14, 11], "texture": "#5"} + } + }, + { + "from": [7.25, 19.5, 7.5], + "to": [8.75, 20.5, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.2, 11], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.5], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.5], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13.5, 11], "texture": "#5"} + } + }, + { + "from": [7.75, 20.5, 7.5], + "to": [8.25, 21.5, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 12.2, 11], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.5], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.5], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.5, 11], "texture": "#5"} + } + }, + { + "from": [7.2, -10.3, 7.2], + "to": [8.8, -7.7, 8.8], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3.8, 3.5, 11.9, 12.3], "texture": "#5"}, + "east": {"uv": [3.8, 3.5, 11.9, 12.3], "texture": "#5"}, + "south": {"uv": [3.8, 3.5, 11.9, 12.3], "texture": "#5"}, + "west": {"uv": [3.8, 3.5, 11.9, 12.3], "texture": "#5"}, + "up": {"uv": [3.8, 3.5, 11.9, 11.3], "texture": "#5"}, + "down": {"uv": [3.8, 3.5, 11.9, 11.3], "texture": "#5"} + } + }, + { + "from": [7.4, 8.7, 7.3], + "to": [8.6, 11.3, 8.7], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1.2, 2, 13.9, 14.3], "texture": "#5"}, + "east": {"uv": [1.2, 2, 13.9, 14.3], "texture": "#5"}, + "south": {"uv": [1.2, 2, 13.9, 14.3], "texture": "#5"}, + "west": {"uv": [1.2, 2, 13.9, 14.3], "texture": "#5"}, + "up": {"uv": [1.2, 2, 13.9, 13.3], "texture": "#5"}, + "down": {"uv": [1.2, 2, 13.9, 13.3], "texture": "#5"} + } + }, + { + "from": [2.45, 13.5, 7.2], + "to": [3.75, 15.3, 8.8], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [0.7, 1.3, 14.2, 14.5], "texture": "#5"}, + "east": {"uv": [0.7, 1.3, 14.2, 14.5], "texture": "#5"}, + "south": {"uv": [0.7, 1.3, 14.5, 15.1], "texture": "#5"}, + "west": {"uv": [0.7, 1.3, 14.2, 14.5], "texture": "#5"}, + "up": {"uv": [0.7, 1.3, 14.9, 15.4], "texture": "#5"}, + "down": {"uv": [1, 1, 14, 14.5], "texture": "#5"} + } + }, + { + "from": [12.1, 13.5, 7.2], + "to": [13.4, 15.3, 8.8], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"}, + "east": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"}, + "south": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"}, + "west": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"}, + "up": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"}, + "down": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"} + } + }, + { + "from": [7.7, 18, 7.3], + "to": [8.3, 20.2, 8.7], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.7, 12.5], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 13], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 11], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 14, 12], "texture": "#5"} + } + }, + { + "from": [7.8, 11.2, 7.4], + "to": [8.2, 18, 8.6], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.7, 12.5], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 13], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 11], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 14, 12], "texture": "#5"} + } + }, + { + "from": [7.2, 13.2, 7.2], + "to": [8.8, 15.3, 8.8], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2, 2, 14, 14.1], "texture": "#5"}, + "east": {"uv": [2, 2, 14, 14.1], "texture": "#5"}, + "south": {"uv": [2, 2, 13.6, 13.6], "texture": "#5"}, + "west": {"uv": [2, 2, 14, 14.1], "texture": "#5"}, + "up": {"uv": [2, 2, 14, 14.1], "texture": "#5"}, + "down": {"uv": [2, 2, 14, 14.1], "texture": "#5"} + } + }, + { + "from": [7.45, 2.45, 7.45], + "to": [8.55, 3.05, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, 0.95, 7.45], + "to": [8.55, 1.55, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, -0.55, 7.45], + "to": [8.55, 0.05, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, -2.05, 7.45], + "to": [8.55, -1.45, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, -3.55, 7.45], + "to": [8.55, -2.95, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, -5.05, 7.45], + "to": [8.55, -4.45, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, -6.55, 7.45], + "to": [8.55, -5.95, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, 3.95, 7.45], + "to": [8.55, 4.55, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, 5.45, 7.45], + "to": [8.55, 6.05, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, 6.95, 7.45], + "to": [8.55, 7.55, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [2, -110, -2], + "translation": [-0.5, 7, 2], + "scale": [1.5, 1.5, 1.5] + }, + "thirdperson_lefthand": { + "rotation": [2, -110, -2], + "translation": [-0.5, 7, 2], + "scale": [1.5, 1.5, 1.5] + }, + "firstperson_righthand": { + "rotation": [-71, 70, 7], + "translation": [3, 9, -2.5] + }, + "firstperson_lefthand": { + "rotation": [-71, 70, 7], + "translation": [3, 9, -2.5] + }, + "ground": { + "rotation": [0, 45, 90], + "translation": [0, 2.5, 0] + }, + "gui": { + "rotation": [0, 0, -45], + "scale": [0.75, 0.75, 0.75] + }, + "fixed": { + "rotation": [0, 0, 45] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/models/weapons/torpedo_harpoon_charge.json b/src/main/resources/assets/minecraft/models/weapons/torpedo_harpoon_charge.json new file mode 100644 index 0000000..19158f8 --- /dev/null +++ b/src/main/resources/assets/minecraft/models/weapons/torpedo_harpoon_charge.json @@ -0,0 +1,705 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "5": "block/gold_block", + "6": "block/dark_prismarine", + "7": "block/prismarine", + "particle": "block/acacia_door_bottom" + }, + "elements": [ + { + "from": [7.5, -10, 7.5], + "to": [8.5, 10, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [0.3, 16, 1.3, 2.9], "texture": "#7"}, + "east": {"uv": [0.3, 16, 1.3, 2.9], "texture": "#7"}, + "south": {"uv": [1.3, 16, 0.4, 2.9], "texture": "#7"}, + "west": {"uv": [0.3, 16, 1.3, 2.9], "texture": "#7"}, + "up": {"uv": [0, 16, 1.3, 2.9], "texture": "#7"}, + "down": {"uv": [0, 16, 1.3, 2.9], "texture": "#7"} + } + }, + { + "from": [5, 10, 7.5], + "to": [11, 11, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [13.6, 13.7, 2.6, 2.2], "texture": "#5"}, + "east": {"uv": [2.6, 13.7, 13.6, 2.2], "texture": "#5"}, + "south": {"uv": [13.6, 2.2, 2.6, 13.7], "texture": "#5"}, + "west": {"uv": [13.6, 13.7, 2.6, 2.2], "texture": "#5"}, + "up": {"uv": [13.6, 2.2, 2.6, 13.7], "texture": "#5"}, + "down": {"uv": [2.6, 13.7, 13.6, 2.2], "texture": "#5"} + } + }, + { + "from": [14.05, 4.4125, 7.505], + "to": [17.05, 5.4125, 8.495], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2.39, 13.8, 13.1], "texture": "#5"}, + "east": {"uv": [1.55, 3.39, 8.24, 9.79], "texture": "#5"}, + "south": {"uv": [4.9, 4, 7.9, 5], "texture": "#5"}, + "west": {"uv": [3, 2, 3.99, 3], "texture": "#5"}, + "up": {"uv": [3, 0, 13.8, 11.1], "texture": "#5"}, + "down": {"uv": [0, 1, 13, 10.99], "texture": "#5"} + } + }, + { + "from": [-2.3, 10.55, 7.505], + "to": [0.45, 11.55, 8.495], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1, 1.89, 13, 12.1], "texture": "#5"}, + "east": {"uv": [4.55, 4.39, 11.24, 10.79], "texture": "#5"}, + "south": {"uv": [1.9, 2, 11.6, 8.7], "texture": "#5"}, + "west": {"uv": [6, 4, 13.59, 11.3], "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "texture": "#5"}, + "down": {"uv": [2, 1.5, 13.9, 13.49], "texture": "#5"} + } + }, + { + "from": [10.73, 8.55, 7.505], + "to": [11.73, 11.3, 8.495], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [13.6, 1.8, 2.5, 13.8], "rotation": 270, "texture": "#5"}, + "east": {"uv": [13.6, 13.8, 2.5, 1.8], "rotation": 90, "texture": "#5"}, + "south": {"uv": [13.6, 13.8, 2.5, 1.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [13.6, 1.8, 2.5, 13.8], "rotation": 90, "texture": "#5"}, + "up": {"uv": [13.6, 1.8, 2.5, 13.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.5, 1.8, 13.6, 13.8], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.5, 13.75, 7.505], + "to": [3.5, 16.5, 8.505], + "rotation": {"angle": 0, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 14.45, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.5], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.5], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-7.07, 15.55, 7.501], + "to": [-6.07, 17.2, 8.481], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.95, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-7.06, 17.15, 7.506], + "to": [-5.55, 18.6, 8.516], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.51], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.51], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.51], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13.01, 11.51], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-6.86, 17.35, 7.306], + "to": [-6.25, 19.2, 8.716], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.51], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.51], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.51], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13.01, 11.51], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-6.76, 15.55, 7.406], + "to": [-6.35, 17.4, 8.616], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.51], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.51], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.51], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13.01, 11.51], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.79, 14.55, 7.406], + "to": [3.2, 16.4, 8.616], + "rotation": {"angle": 0, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.51], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.51], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.51], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13.01, 11.51], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [10.89, 8.95, 7.406], + "to": [11.3, 10.7, 8.616], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1, 1.89, 13, 12.1], "rotation": 270, "texture": "#5"}, + "east": {"uv": [4.55, 4.39, 12, 10.8], "rotation": 90, "texture": "#5"}, + "south": {"uv": [1.9, 2, 11.6, 9.21], "rotation": 90, "texture": "#5"}, + "west": {"uv": [6, 4, 14.35, 11.31], "rotation": 90, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0.9, 0.5, 15, 13.01], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [16.54, 0.9, 7.406], + "to": [16.95, 3.48, 8.616], + "rotation": {"angle": 45, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1, 1.89, 13, 12.1], "rotation": 270, "texture": "#5"}, + "east": {"uv": [4.55, 4.39, 12, 10.8], "rotation": 90, "texture": "#5"}, + "south": {"uv": [1.9, 2, 11.6, 9.21], "rotation": 90, "texture": "#5"}, + "west": {"uv": [6, 4, 14.35, 11.31], "rotation": 90, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0.9, 0.5, 15, 13.01], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-7.05, 18.55, 7.505], + "to": [-6.05, 19.8, 8.495], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 12.95, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-7.055, 19.75, 7.504], + "to": [-6.555, 20.8, 8.494], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0.1, -8, 0]}, + "faces": { + "north": {"uv": [3, 10.7, 12.95, 1.8], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 10.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [16.25, 1.2, 7.505], + "to": [17.25, 3.2, 8.495], + "rotation": {"angle": 45, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1, 1.89, 13, 12.1], "rotation": 270, "texture": "#5"}, + "east": {"uv": [4.55, 4.39, 12, 10.78], "rotation": 90, "texture": "#5"}, + "south": {"uv": [1.9, 2, 11.6, 8.7], "rotation": 90, "texture": "#5"}, + "west": {"uv": [6, 4, 14.35, 11.29], "rotation": 90, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0.9, 0.5, 15, 12.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-5.935, 12.5, 7.505], + "to": [-4.935, 14.25, 8.495], + "rotation": {"angle": -45, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.3, 1.4, 14.3, 14.3], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.3, 1.4, 14.3, 14.3], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.3, 1.4, 14.3, 14.3], "rotation": 90, "texture": "#5"}, + "west": {"uv": [2.3, 1.4, 14.3, 14.3], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.3, 1.4, 14.3, 14.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [14.3, 1.4, 2.3, 14.3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.94, 14.45, 7.505], + "to": [3.94, 17.25, 8.495], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2, 2.49, 14.3, 14.4], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2, 2.7, 14.3, 14.4], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2, 2.7, 14.3, 14.4], "rotation": 90, "texture": "#5"}, + "west": {"uv": [2, 2.7, 14.3, 14.4], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2, 2, 14.3, 14.4], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2, 2.7, 14.3, 14.4], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [12.35, 13.9, 7.505], + "to": [13.35, 16.8, 8.495], + "rotation": {"angle": 0, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 14.6, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [20.83, 9.8, 7.5], + "to": [21.83, 11.05, 8.49], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 12.95, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [20.35, 11, 7.5025], + "to": [21.85, 12.35, 8.4925], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.5], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [21.05, 11.2, 7.3025], + "to": [21.65, 12.95, 8.6925], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.5], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [21.15, 9.8, 7.4025], + "to": [21.55, 11.55, 8.5925], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.5], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [12.7, 14.9, 7.4125], + "to": [13.1, 16.75, 8.6035], + "rotation": {"angle": 0, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.45, 11.5], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3.2, 14.5, 7.4125], + "to": [3.6, 16.75, 8.6035], + "rotation": {"angle": -22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2.39, 13.8, 13.1], "rotation": 270, "texture": "#5"}, + "east": {"uv": [1.55, 3.39, 9, 9.78], "rotation": 90, "texture": "#5"}, + "south": {"uv": [4.9, 4, 6.65, 5.5], "rotation": 90, "texture": "#5"}, + "west": {"uv": [3, 2, 4.75, 2.99], "rotation": 90, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0, 2, 0.99, 3.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [-5.7, 12.2, 7.4125], + "to": [-5.3, 14.15, 8.6035], + "rotation": {"angle": -45, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2.39, 13.8, 13.1], "rotation": 270, "texture": "#5"}, + "east": {"uv": [1.55, 3.39, 9, 9.78], "rotation": 90, "texture": "#5"}, + "south": {"uv": [4.9, 4, 6.65, 5.5], "rotation": 90, "texture": "#5"}, + "west": {"uv": [3, 2, 4.75, 2.99], "rotation": 90, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0, 2, 0.99, 3.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [8.6, 10, 7.4125], + "to": [10.55, 10.4, 8.6035], + "rotation": {"angle": 0, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2.39, 13.8, 13.1], "rotation": 180, "texture": "#5"}, + "east": {"uv": [1.55, 3.39, 8.24, 10.29], "rotation": 180, "texture": "#5"}, + "south": {"uv": [4.9, 4, 6.65, 5.5], "rotation": 180, "texture": "#5"}, + "west": {"uv": [3, 2, 3.99, 3.5], "rotation": 180, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 180, "texture": "#5"}, + "down": {"uv": [0, 2, 1.75, 2.99], "rotation": 180, "texture": "#5"} + } + }, + { + "from": [5.4, 10, 7.4125], + "to": [7.55, 10.4, 8.6035], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1, 1.89, 13, 12.1], "rotation": 180, "texture": "#5"}, + "east": {"uv": [4.55, 4.39, 11.24, 11.29], "rotation": 180, "texture": "#5"}, + "south": {"uv": [1.9, 2, 11.6, 9.2], "rotation": 180, "texture": "#5"}, + "west": {"uv": [6, 4, 13.59, 11.8], "rotation": 180, "texture": "#5"}, + "up": {"uv": [3, 2, 13.8, 13.1], "rotation": 180, "texture": "#5"}, + "down": {"uv": [0.9, 0.5, 15, 12.49], "rotation": 180, "texture": "#5"} + } + }, + { + "from": [20.85, 12.3, 7.505], + "to": [21.85, 13.55, 8.495], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 12.95, 11], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 11], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [21.357, 13.5, 7.5025], + "to": [21.857, 14.55, 8.4925], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 10.7, 12.95, 1.8], "rotation": 270, "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.49], "rotation": 90, "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.49], "rotation": 90, "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.99, 10.5], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [7.5, 11, 7.5], + "to": [8.5, 18, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 1, 13.7, 12.6], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 13], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 11], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13, 11], "texture": "#5"} + } + }, + { + "from": [7, 18, 7.5], + "to": [9, 19.5, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.7, 11.5], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 13], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 11], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 14, 11], "texture": "#5"} + } + }, + { + "from": [7.25, 19.5, 7.5], + "to": [8.75, 20.5, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.2, 11], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.5], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.5], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 13.5, 11], "texture": "#5"} + } + }, + { + "from": [7.75, 20.5, 7.5], + "to": [8.25, 21.5, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 12.2, 11], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 12.5], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 10.5], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 10.8], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 12.5, 11], "texture": "#5"} + } + }, + { + "from": [7.2, -10.3, 7.2], + "to": [8.8, -7.7, 8.8], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3.8, 3.5, 11.9, 12.3], "texture": "#5"}, + "east": {"uv": [3.8, 3.5, 11.9, 12.3], "texture": "#5"}, + "south": {"uv": [3.8, 3.5, 11.9, 12.3], "texture": "#5"}, + "west": {"uv": [3.8, 3.5, 11.9, 12.3], "texture": "#5"}, + "up": {"uv": [3.8, 3.5, 11.9, 11.3], "texture": "#5"}, + "down": {"uv": [3.8, 3.5, 11.9, 11.3], "texture": "#5"} + } + }, + { + "from": [7.4, 8.7, 7.3], + "to": [8.6, 11.3, 8.7], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1.2, 2, 13.9, 14.3], "texture": "#5"}, + "east": {"uv": [1.2, 2, 13.9, 14.3], "texture": "#5"}, + "south": {"uv": [1.2, 2, 13.9, 14.3], "texture": "#5"}, + "west": {"uv": [1.2, 2, 13.9, 14.3], "texture": "#5"}, + "up": {"uv": [1.2, 2, 13.9, 13.3], "texture": "#5"}, + "down": {"uv": [1.2, 2, 13.9, 13.3], "texture": "#5"} + } + }, + { + "from": [2.45, 13.5, 7.2], + "to": [3.75, 15.3, 8.8], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [0.7, 1.3, 14.2, 14.5], "texture": "#5"}, + "east": {"uv": [0.7, 1.3, 14.2, 14.5], "texture": "#5"}, + "south": {"uv": [0.7, 1.3, 14.5, 15.1], "texture": "#5"}, + "west": {"uv": [0.7, 1.3, 14.2, 14.5], "texture": "#5"}, + "up": {"uv": [0.7, 1.3, 14.9, 15.4], "texture": "#5"}, + "down": {"uv": [1, 1, 14, 14.5], "texture": "#5"} + } + }, + { + "from": [12.1, 13.5, 7.2], + "to": [13.4, 15.3, 8.8], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"}, + "east": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"}, + "south": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"}, + "west": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"}, + "up": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"}, + "down": {"uv": [1.3, 1.2, 14.7, 14.4], "texture": "#5"} + } + }, + { + "from": [7.7, 18, 7.3], + "to": [8.3, 20.2, 8.7], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.7, 12.5], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 13], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 11], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 14, 12], "texture": "#5"} + } + }, + { + "from": [7.8, 11.2, 7.4], + "to": [8.2, 18, 8.6], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [3, 2, 13.7, 12.5], "texture": "#5"}, + "east": {"uv": [2.7, 2.5, 15, 13], "texture": "#5"}, + "south": {"uv": [2.8, 1.5, 14, 12.8], "texture": "#5"}, + "west": {"uv": [0.7, 0.5, 14, 11], "texture": "#5"}, + "up": {"uv": [2.2, 2.1, 12, 11.3], "texture": "#5"}, + "down": {"uv": [2.6, 1.5, 14, 12], "texture": "#5"} + } + }, + { + "from": [7.2, 13.2, 7.2], + "to": [8.8, 15.3, 8.8], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2, 2, 14, 14.1], "texture": "#5"}, + "east": {"uv": [2, 2, 14, 14.1], "texture": "#5"}, + "south": {"uv": [2, 2, 13.6, 13.6], "texture": "#5"}, + "west": {"uv": [2, 2, 14, 14.1], "texture": "#5"}, + "up": {"uv": [2, 2, 14, 14.1], "texture": "#5"}, + "down": {"uv": [2, 2, 14, 14.1], "texture": "#5"} + } + }, + { + "from": [7.45, 2.45, 7.45], + "to": [8.55, 3.05, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, 0.95, 7.45], + "to": [8.55, 1.55, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, -0.55, 7.45], + "to": [8.55, 0.05, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, -2.05, 7.45], + "to": [8.55, -1.45, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, -3.55, 7.45], + "to": [8.55, -2.95, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, -5.05, 7.45], + "to": [8.55, -4.45, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, -6.55, 7.45], + "to": [8.55, -5.95, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, 3.95, 7.45], + "to": [8.55, 4.55, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, 5.45, 7.45], + "to": [8.55, 6.05, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + }, + { + "from": [7.45, 6.95, 7.45], + "to": [8.55, 7.55, 8.55], + "rotation": {"angle": 0, "axis": "y", "origin": [0, -8, 0]}, + "faces": { + "north": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "east": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "south": {"uv": [4, 4, 11.9, 12.1], "texture": "#6"}, + "west": {"uv": [2.9, 2.9, 13.4, 12.5], "texture": "#6"}, + "up": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"}, + "down": {"uv": [2.9, 2.9, 13.4, 13], "texture": "#6"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [31, 58, -68], + "translation": [9.25, 13.25, -8.75], + "scale": [1.5, 1.5, 1.5] + }, + "thirdperson_lefthand": { + "rotation": [31, 58, -68], + "translation": [9.25, 13.25, -8.75], + "scale": [1.5, 1.5, 1.5] + }, + "firstperson_righthand": { + "rotation": [-81, 113, -8], + "translation": [-6, 4, -2.5] + }, + "firstperson_lefthand": { + "rotation": [-81, 113, -8], + "translation": [-6, 4, -2.5] + }, + "ground": { + "rotation": [0, 45, 90], + "translation": [0, 2.5, 0] + }, + "gui": { + "rotation": [0, 0, -45], + "scale": [0.75, 0.75, 0.75] + }, + "fixed": { + "rotation": [0, 0, 45] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/minecraft/textures/baw/amethyst_block.png b/src/main/resources/assets/minecraft/textures/baw/amethyst_block.png new file mode 100644 index 0000000..4e3e8b1 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/baw/amethyst_block.png differ diff --git a/src/main/resources/assets/minecraft/textures/baw/iron_block.png b/src/main/resources/assets/minecraft/textures/baw/iron_block.png new file mode 100644 index 0000000..5ecaf7f Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/baw/iron_block.png differ diff --git a/src/main/resources/assets/minecraft/textures/baw/oak_planks.png b/src/main/resources/assets/minecraft/textures/baw/oak_planks.png new file mode 100644 index 0000000..5de3861 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/baw/oak_planks.png differ diff --git a/src/main/resources/assets/minecraft/textures/baw/obsidian.png b/src/main/resources/assets/minecraft/textures/baw/obsidian.png new file mode 100644 index 0000000..b9e0906 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/baw/obsidian.png differ diff --git a/src/main/resources/assets/minecraft/textures/item/crossbow.json b/src/main/resources/assets/minecraft/textures/item/crossbow.json new file mode 100644 index 0000000..0cddcac --- /dev/null +++ b/src/main/resources/assets/minecraft/textures/item/crossbow.json @@ -0,0 +1,63 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/crossbow_standby" + }, + "display": { + "thirdperson_righthand": { + "rotation": [ -90, 0, -60 ], + "translation": [ 2, 0.1, -3 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "thirdperson_lefthand": { + "rotation": [ -90, 0, 30 ], + "translation": [ 2, 0.1, -3 ], + "scale": [ 0.9, 0.9, 0.9 ] + }, + "firstperson_righthand": { + "rotation": [ -90, 0, -55 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + }, + "firstperson_lefthand": { + "rotation": [ -90, 0, 35 ], + "translation": [ 1.13, 3.2, 1.13], + "scale": [ 0.68, 0.68, 0.68 ] + } + }, + "overrides": [ + { + "predicate": { + "pulling": 1 + }, + "model": "item/crossbow_pulling_0" + }, + { + "predicate": { + "pulling": 1, + "pull": 0.58 + }, + "model": "item/crossbow_pulling_1" + }, + { + "predicate": { + "pulling": 1, + "pull": 1.0 + }, + "model": "item/crossbow_pulling_2" + }, + { + "predicate": { + "charged": 1 + }, + "model": "item/crossbow_arrow" + }, + { + "predicate": { + "charged": 1, + "firework": 1 + }, + "model": "item/crossbow_firework" + } + ] +} diff --git a/src/main/resources/assets/minecraft/textures/item/enchantlet_back.png b/src/main/resources/assets/minecraft/textures/item/enchantlet_back.png new file mode 100644 index 0000000..499c5eb Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/item/enchantlet_back.png differ diff --git a/src/main/resources/assets/minecraft/textures/item/enchantlet_back_2.png b/src/main/resources/assets/minecraft/textures/item/enchantlet_back_2.png new file mode 100644 index 0000000..ee5cf25 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/item/enchantlet_back_2.png differ diff --git a/src/main/resources/assets/minecraft/textures/item/enchantlet_back_3.png b/src/main/resources/assets/minecraft/textures/item/enchantlet_back_3.png new file mode 100644 index 0000000..5f60549 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/item/enchantlet_back_3.png differ diff --git a/src/main/resources/assets/minecraft/textures/item/enchantlet_back_4.png b/src/main/resources/assets/minecraft/textures/item/enchantlet_back_4.png new file mode 100644 index 0000000..5b362f6 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/item/enchantlet_back_4.png differ diff --git a/src/main/resources/assets/minecraft/textures/item/enchantlet_back_5.png b/src/main/resources/assets/minecraft/textures/item/enchantlet_back_5.png new file mode 100644 index 0000000..332bcbb Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/item/enchantlet_back_5.png differ diff --git a/src/main/resources/assets/minecraft/textures/item/enchantlet_tier_1.png b/src/main/resources/assets/minecraft/textures/item/enchantlet_tier_1.png new file mode 100644 index 0000000..a487ad4 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/item/enchantlet_tier_1.png differ diff --git a/src/main/resources/assets/minecraft/textures/item/spear_head.png b/src/main/resources/assets/minecraft/textures/item/spear_head.png new file mode 100644 index 0000000..79e4d0a Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/item/spear_head.png differ diff --git a/src/main/resources/assets/minecraft/textures/item/tier_5.png b/src/main/resources/assets/minecraft/textures/item/tier_5.png new file mode 100644 index 0000000..136d2f7 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/item/tier_5.png differ diff --git a/src/main/resources/assets/minecraft/textures/map/enchantlet_back.png b/src/main/resources/assets/minecraft/textures/map/enchantlet_back.png new file mode 100644 index 0000000..499c5eb Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/map/enchantlet_back.png differ diff --git a/src/main/resources/assets/minecraft/textures/map/enchantlet_back_2.png b/src/main/resources/assets/minecraft/textures/map/enchantlet_back_2.png new file mode 100644 index 0000000..5b362f6 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/map/enchantlet_back_2.png differ diff --git a/src/main/resources/assets/minecraft/textures/map/enchantlet_back_3.png b/src/main/resources/assets/minecraft/textures/map/enchantlet_back_3.png new file mode 100644 index 0000000..ee5cf25 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/map/enchantlet_back_3.png differ diff --git a/src/main/resources/assets/minecraft/textures/map/enchantlet_tier_1.png b/src/main/resources/assets/minecraft/textures/map/enchantlet_tier_1.png new file mode 100644 index 0000000..a487ad4 Binary files /dev/null and b/src/main/resources/assets/minecraft/textures/map/enchantlet_tier_1.png differ diff --git a/src/main/resources/assets/modid/icon.png b/src/main/resources/assets/modid/icon.png new file mode 100644 index 0000000..047b91f Binary files /dev/null and b/src/main/resources/assets/modid/icon.png differ diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..9de9131 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,29 @@ +{ + "schemaVersion": 1, + "id": "infinity-cave", + "version": "${version}", + "name": "Infinity Cave LCE", + "description": "A custom fork of Infinity Caves by Frozy which removes Strider mob spam and contains other small fixes", + "authors": [ + "oitsjustjose" + ], + "contact": { + "homepage": "https://github.com/oitsjustjose/infinity-cave-lce", + "sources": "https://github.com/oitsjustjose/infinity-cave-lce" + }, + "license": "CC0-1.0", + "icon": "assets/infinity-cave/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "com.oitsjustjose.infinitycavefabric.InfinityCaveFabric" + ] + }, + "depends": { + "fabricloader": ">=0.14.21", + "minecraft": "~1.20.1", + "java": ">=17", + "fabric-api": "*" + }, + "suggests": {} +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/1.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/1.json new file mode 100644 index 0000000..e0d38c7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/1.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:1}" + }, + "title": "Enchantmentulet?", + "description": [ + { + "text": "Find your first Enchantlet!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:enchant}" + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/2.json new file mode 100644 index 0000000..42a7a8f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/2.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:2}" + }, + "title": "I Forsee a Great Enchantment...", + "description": [ + { + "text": "A GREAT ENCHANTMENT WITH ME!\n\nFind your first Tier II Enchantlet!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/1", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ec:2}" + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/3.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/3.json new file mode 100644 index 0000000..ead5928 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/3.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:3}" + }, + "title": "Tier III SUB TO GRU!", + "description": [ + { + "text": "Find your first Tier III Enchantlet!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/2", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ec:3}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/4.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/4.json new file mode 100644 index 0000000..ed64c28 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/4.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:4}" + }, + "title": "TIER 4 SUBS EXIST?!", + "description": [ + { + "text": "Find your first Tier IV Enchantlet!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/3", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ec:4}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/5.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/5.json new file mode 100644 index 0000000..9af4c7c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/5.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:5}" + }, + "title": "V = X but also = VII?", + "description": [ + { + "text": "If VII = V and V also = X then what if VIII and IX = V. Oh, it's just the amount of sharpness you can get\n\nFind your first Tier V Enchantlet!" + } + ], + "frame": "goal", + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/4", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ec:5}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/all_in_one.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/all_in_one.json new file mode 100644 index 0000000..a5ed7f2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/all_in_one.json @@ -0,0 +1,40 @@ +{ + "display": { + "icon": { + "item": "minecraft:iron_sword" + }, + "title": "Three is Better than One!", + "description": [ + { + "text": "Obtain all three damage enchantments combined into one sword" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/2", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "infinity_cave:sharpness", + "enchantments": [ + { + "enchantment": "minecraft:smite" + }, + { + "enchantment": "minecraft:bane_of_arthropods" + }, + { + "enchantment": "minecraft:sharpness" + } + ] + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/efficiency_6.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/efficiency_6.json new file mode 100644 index 0000000..3e62a57 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/efficiency_6.json @@ -0,0 +1,37 @@ +{ + "display": { + "icon": { + "item": "minecraft:diamond_pickaxe" + }, + "title": "Mine Treasure Efficiency", + "description": [ + { + "text": "Obtain Efficiency VI+" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/4", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "infinity_cave:tools", + "enchantments": [ + { + "enchantment": "minecraft:efficiency", + "levels": { + "min": 6 + } + } + ] + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/power_6.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/power_6.json new file mode 100644 index 0000000..198c470 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/power_6.json @@ -0,0 +1,39 @@ +{ + "display": { + "icon": { + "item": "minecraft:bow" + }, + "title": "Powerhouse!", + "description": [ + { + "text": "Obtain Power VI+" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/4", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:bow" + ], + "enchantments": [ + { + "enchantment": "minecraft:power", + "levels": { + "min": 6 + } + } + ] + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/sharpness_10.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/sharpness_10.json new file mode 100644 index 0000000..e0743e1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/sharpness_10.json @@ -0,0 +1,38 @@ +{ + "display": { + "icon": { + "item": "minecraft:netherite_sword" + }, + "title": "The Sharpest Lives", + "description": [ + { + "text": "Obtain sharpness X" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/5", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "infinity_cave:sharpness", + "enchantments": [ + { + "enchantment": "minecraft:sharpness", + "levels": { + "min": 10 + } + } + ] + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/sharpness_6.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/sharpness_6.json new file mode 100644 index 0000000..c33904f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/enchantlet/sharpness_6.json @@ -0,0 +1,38 @@ +{ + "display": { + "icon": { + "item": "minecraft:diamond_sword" + }, + "title": "WOAH BE CAREFUL, THAT'S REALLY SHARP!", + "description": [ + { + "text": "Obtain sharpness VI+" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/4", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "infinity_cave:sharpness", + "enchantments": [ + { + "enchantment": "minecraft:sharpness", + "levels": { + "min": 6 + } + } + ] + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/acid_shield.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/acid_shield.json new file mode 100644 index 0000000..243a1df --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/acid_shield.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:shield", + "nbt": "{CustomModelData:2}" + }, + "title": "How Do You Own Disoder?", + "description": [ + { + "text": "Obtain the Acid Shield" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/sulfide_huts", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:acid_shield}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/amethyst_blade.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/amethyst_blade.json new file mode 100644 index 0000000..173ffc2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/amethyst_blade.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:netherite_sword", + "nbt": "{CustomModelData:1}" + }, + "title": "Chime Chime DIE DIE!", + "description": [ + { + "text": "Obtain the Amethyst Blade" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/amethyst_geode", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:netherite_sword" + ], + "nbt": "{ic:amethyst_blade}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/bastion_piercer.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/bastion_piercer.json new file mode 100644 index 0000000..8103df1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/bastion_piercer.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:netherite_hoe", + "nbt": "{CustomModelData:1}" + }, + "title": "Pokey Pokey!", + "description": [ + { + "text": "Obtain the Bastion Piercer" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/sulfide_huts", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:netherite_hoe" + ], + "nbt": "{ic:bastion_piercer}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/fireball.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/fireball.json new file mode 100644 index 0000000..69012ec --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/fireball.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:6}" + }, + "title": "Fire With a Ball", + "description": [ + { + "text": "Obtain a Fireball" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/knuckle_trap", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:fireball}" + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/ice_spark.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/ice_spark.json new file mode 100644 index 0000000..489dd11 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/ice_spark.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:7}" + }, + "title": "You're on Thin Ice", + "description": [ + { + "text": "Obtain an Ice Spark" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/frozen_robot", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:ice_spark}" + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/icicle_crossbow.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/icicle_crossbow.json new file mode 100644 index 0000000..a263b12 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/icicle_crossbow.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:crossbow", + "nbt": "{CustomModelData:1}" + }, + "title": "The Battlebox Experience", + "description": [ + { + "text": "Obtain the Icicle Crossbow" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/frozen_robot", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crossbow" + ], + "nbt": "{ic:icicle_crossbow}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/molten_hammer.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/molten_hammer.json new file mode 100644 index 0000000..a2f0c01 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/molten_hammer.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:brush", + "nbt": "{CustomModelData:1}" + }, + "title": "Stop, Hammertime!", + "description": [ + { + "text": "Obtain the Molten Hammer" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/knuckle_trap", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:brush" + ], + "nbt": "{ic:molten_hammer}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/sonic_bow.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/sonic_bow.json new file mode 100644 index 0000000..058aa66 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/sonic_bow.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:bow", + "nbt": "{CustomModelData:1}" + }, + "title": "Skelington, May I Have a Word?", + "description": [ + { + "text": "Obtain the Supersonic Bow" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/deep_temple", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:bow" + ], + "nbt": "{ic:sonic_bow}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/steel_battleaxe.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/steel_battleaxe.json new file mode 100644 index 0000000..8108b24 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/steel_battleaxe.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:netherite_axe", + "nbt": "{CustomModelData:1}" + }, + "title": "Erradicate All Shield Users", + "description": [ + { + "text": "Obtain the Steel Battleaxe" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/dinosaur", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:netherite_axe" + ], + "nbt": "{ic:steel_battleaxe}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/thunder_harpoon.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/thunder_harpoon.json new file mode 100644 index 0000000..d632603 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/items/thunder_harpoon.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:shield", + "nbt": "{CustomModelData:1}" + }, + "title": "A Drowned Once Wished for This", + "description": [ + { + "text": "Obtain the Thunder Harpoon" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/limestone_houses", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:torpedo_harpoon}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/root.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/root.json new file mode 100644 index 0000000..34a8d21 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/root.json @@ -0,0 +1,42 @@ +{ + "display": { + "icon": { + "item": "minecraft:player_head", + "nbt": "{SkullOwner:{Id:[I;36370817,-985381286,-1212199616,-2014244506],Properties:{textures:[{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2U4YWRhOWI3MTNmZGVlZDE0MmE4NmEwNjExYTM1OGRlYjRhNzdkZGM1NGQ0NWUyYjY4ZjI1NzdkZmFiYWI0In19fQ==\"}]}}}" + }, + "title": { + "text": "Infinity Cave", + "color": "white", + "bold": false + }, + "description": { + "text": "Welcome to Infinity Cave, check the guidebook for more information." + }, + "background": "minecraft:textures/block/black_stained_glass.png", + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "criteria": { + "location": { + "trigger": "minecraft:location", + "conditions": { + "player": [ + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + } + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:display/start" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/amethyst_altar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/amethyst_altar.json new file mode 100644 index 0000000..83333f9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/amethyst_altar.json @@ -0,0 +1,49 @@ +{ + "display": { + "icon": { + "item": "minecraft:end_crystal" + }, + "title": "ANIMATIONS! WOOO!", + "description": [ + { + "text": "Activate the Amethyst Altar!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_interacted_with_entity", + "conditions": { + "player": [], + "entity": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.altar": { + "min": 1, + "max": 85 + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:interaction", + "nbt": "{Tags:[\"ic.amethyst_altar\"]}" + } + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/amethyst_geode.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/amethyst_geode.json new file mode 100644 index 0000000..cc63abf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/amethyst_geode.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:amethyst_block" + }, + "title": "What type of Geode is this?", + "description": [ + { + "text": "Find loot in a Giant Amethyst Geode structure!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/amethyst_geode" + } + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/deep_temple.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/deep_temple.json new file mode 100644 index 0000000..3688abf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/deep_temple.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:end_stone_bricks" + }, + "title": "The Lore Structure", + "description": [ + { + "text": "Find loot in the Deep Temple structure!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/deep_dark_temple" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/dinosaur.json new file mode 100644 index 0000000..766debe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/dinosaur.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:bone_block" + }, + "title": "What Kind of Creature is This?", + "description": [ + { + "text": "Find loot in the Dinosaur structure!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/dinosaur" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/frozen_robot.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/frozen_robot.json new file mode 100644 index 0000000..02471c2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/frozen_robot.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:iron_block" + }, + "title": "What Kind of Robot is This?", + "description": [ + { + "text": "Find loot in the Frozen Robot structure!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/frozen_robot" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/knuckle_trap.json new file mode 100644 index 0000000..0386dcb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/knuckle_trap.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:magma_block" + }, + "title": "Temptations... So Tempting...", + "description": [ + { + "text": "Don't mine the Ancient Debris, check underneath it first.\n\nFind loot in the Knuckle structure!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/knuckle_trap" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/limestone_houses.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/limestone_houses.json new file mode 100644 index 0000000..1837942 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/limestone_houses.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:bone_block" + }, + "title": "Don't Trip!", + "description": [ + { + "text": "Find loot in the Limestone Houses!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/limestone_houses" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/sulfide_huts.json new file mode 100644 index 0000000..a95ad53 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/display/structure/sulfide_huts.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:bone_block" + }, + "title": "Ancient Pharmaceuticals", + "description": [ + { + "text": "Find loot in the Sulfide Huts!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/sulfide_huts" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/load.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/load.json new file mode 100644 index 0000000..4758735 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/load.json @@ -0,0 +1,21 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:tick", + "conditions": { + "player": { + "type_specific": { + "type": "player", + "advancements": { + "infinity_cave:mechanics/weapons/sonic_bow/tick": true, + "infinity_cave:mechanics/weapons/torpedo_harpoon/tick": true + } + } + } + } + } + }, + "rewards": { + "function": "infinity_cave:load" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/altar/spawn.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/altar/spawn.json new file mode 100644 index 0000000..829b314 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/altar/spawn.json @@ -0,0 +1,36 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_interacted_with_entity", + "conditions": { + "player": [], + "entity": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.altar": { + "min": 1, + "max": 85 + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:interaction", + "nbt": "{Tags:[\"ic.amethyst_altar\"]}" + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/altar/spawn" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/altar/tick.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/altar/tick.json new file mode 100644 index 0000000..c2a6f2f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/altar/tick.json @@ -0,0 +1,11 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:tick" + } + }, + "rewards": { + "function": "infinity_cave:mechanics/altar/tick" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/darkness_cleanse.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/darkness_cleanse.json new file mode 100644 index 0000000..b74b19f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/darkness_cleanse.json @@ -0,0 +1,19 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:effects_changed", + "conditions": { + "player": { + "nbt": "{Inventory:[{tag:{ic:darkness_cleanse}}]}" + }, + "effects": { + "minecraft:darkness": {} + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/darkness_cleanse" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/enter_toxic_water.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/enter_toxic_water.json new file mode 100644 index 0000000..7b5a62a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/enter_toxic_water.json @@ -0,0 +1,34 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:enter_block", + "conditions": { + "player": [ + { + "condition": "minecraft:location_check", + "predicate": { + "biome": "infinity_cave:sulfide_caves" + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "effects": { + "minecraft:poison": {} + } + } + } + } + ], + "block": "minecraft:water" + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/toxic_water" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/food/burnt_meat.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/food/burnt_meat.json new file mode 100644 index 0000000..09ea6be --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/food/burnt_meat.json @@ -0,0 +1,20 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:consume_item", + "conditions": { + "player": { + "effects": { + "minecraft:fire_resistance": {} + } + }, + "item": { + "nbt": "{ic:burnt_meat}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/food/burnt_meat" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/food/enchanted_chorus_fruit.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/food/enchanted_chorus_fruit.json new file mode 100644 index 0000000..99bf18d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/food/enchanted_chorus_fruit.json @@ -0,0 +1,15 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:consume_item", + "conditions": { + "item": { + "nbt": "{ic:enchanted_chorus_fruit}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/food/enchanted_chorus_fruit" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/food/piglin_meat.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/food/piglin_meat.json new file mode 100644 index 0000000..ce7dbd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/food/piglin_meat.json @@ -0,0 +1,16 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:consume_item", + "conditions": { + "item": { + "nbt": "{ic:piglin_meat}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/food/piglin_meat" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/magic_spyglass.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/magic_spyglass.json new file mode 100644 index 0000000..b05c53d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/magic_spyglass.json @@ -0,0 +1,24 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:using_item", + "conditions": { + "player": { + "type_specific": { + "type": "player", + "looking_at": { + "type": "#infinity_cave:all_living" + } + } + }, + "item": { + "nbt": "{ic:magic_spyglass}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/magic_spyglass/start" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/_rc_check.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/_rc_check.json new file mode 100644 index 0000000..480a658 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/_rc_check.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/_rc_check" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_enchant.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_enchant.json new file mode 100644 index 0000000..cfbb4a9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_enchant.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:enchant,ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:enchant,ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/rc_enchant" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_fireball.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_fireball.json new file mode 100644 index 0000000..0e7711b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_fireball.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:fireball,ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:fireball,ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/rc_fireball" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_ice_spark.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_ice_spark.json new file mode 100644 index 0000000..7978b3a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_ice_spark.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:ice_spark,ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:ice_spark,ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/rc_ice_spark" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_magic_repair.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_magic_repair.json new file mode 100644 index 0000000..cb99de8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_magic_repair.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:magic_repair,ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:magic_repair,ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/rc_magic_repair" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_teleport.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_teleport.json new file mode 100644 index 0000000..afa4aed --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/rc/rc_teleport.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:teleport,ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:teleport,ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/rc_teleport" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/safety_banner.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/safety_banner.json new file mode 100644 index 0000000..16ba78f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/safety_banner.json @@ -0,0 +1,24 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:item_used_on_block", + "conditions": { + "location": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": [ + "minecraft:white_banner" + ], + "nbt": "{ic:safety_banner}" + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/safety_banner" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weakness_cleanse.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weakness_cleanse.json new file mode 100644 index 0000000..1ac6d28 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weakness_cleanse.json @@ -0,0 +1,19 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:effects_changed", + "conditions": { + "player": { + "nbt": "{Inventory:[{tag:{ic:weakness_cleanse}}]}" + }, + "effects": { + "minecraft:weakness": {} + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weakness_cleanse" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/acid_shield/block.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/acid_shield/block.json new file mode 100644 index 0000000..0115469 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/acid_shield/block.json @@ -0,0 +1,54 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:entity_hurt_player", + "conditions": { + "player": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + }, + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:acid_shield}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:acid_shield}" + } + } + } + } + ] + } + ], + "damage": { + "blocked": true + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/acid_shield/start_ray" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/acid_shield/durability.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/acid_shield/durability.json new file mode 100644 index 0000000..ae929af --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/acid_shield/durability.json @@ -0,0 +1,50 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:entity_hurt_player", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:acid_shield}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:acid_shield}" + } + } + } + } + ] + } + ], + "damage": { + "blocked": true + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/acid_shield/durability" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/acid_shield/poison_immune.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/acid_shield/poison_immune.json new file mode 100644 index 0000000..914a174 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/acid_shield/poison_immune.json @@ -0,0 +1,23 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:effects_changed", + "conditions": { + "player": { + "equipment": { + "offhand": { + "nbt": "{ic:acid_shield}" + } + } + }, + "effects": { + "minecraft:poison": {} + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/acid_shield/poison_immune" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/amethyst_blade/half.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/amethyst_blade/half.json new file mode 100644 index 0000000..bb6c6b4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/amethyst_blade/half.json @@ -0,0 +1,43 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.amethyst_blade": { + "min": 11 + } + } + } + ], + "damage": { + "type": { + "tags": [ + { + "id": "infinity_cave:player_attack", + "expected": true + } + ], + "source_entity": { + "equipment": { + "mainhand": { + "nbt": "{ic:amethyst_blade}" + } + } + } + } + }, + "entity": { + "type": "#infinity_cave:all_living" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/amethyst_blade/hit_match" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/bastion_piercer/distance.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/bastion_piercer/distance.json new file mode 100644 index 0000000..01db5dd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/bastion_piercer/distance.json @@ -0,0 +1,53 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.bastion_piercer": { + "min": 11 + } + } + } + ], + "damage": { + "type": { + "tags": [ + { + "id": "infinity_cave:player_attack", + "expected": true + } + ], + "source_entity": { + "equipment": { + "mainhand": { + "nbt": "{ic:bastion_piercer}" + } + } + } + } + }, + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "distance": { + "absolute": { + "min": 2.75 + } + } + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/bastion_piercer/hit_match" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/icicle_crossbow/shot.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/icicle_crossbow/shot.json new file mode 100644 index 0000000..6f84d10 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/icicle_crossbow/shot.json @@ -0,0 +1,16 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:shot_crossbow", + "conditions": { + "item": { + "nbt": "{ic:icicle_crossbow}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/icicle_crossbow/fire" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/hit.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/hit.json new file mode 100644 index 0000000..0b894d2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/hit.json @@ -0,0 +1,25 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:molten_hammer}" + } + } + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/molten_hammer/hit" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/use.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/use.json new file mode 100644 index 0000000..eddb025 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/use.json @@ -0,0 +1,29 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:using_item", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.molten_hammer": { + "min": 5 + } + } + } + ], + "item": { + "items": [ + "minecraft:brush" + ], + "nbt": "{ic:molten_hammer}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/molten_hammer/start_ray" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/charge.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/charge.json new file mode 100644 index 0000000..577aa68 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/charge.json @@ -0,0 +1,20 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:using_item", + "conditions": { + "player": [ + ], + "item": { + "items": [ + "minecraft:bow" + ], + "nbt": "{ic:sonic_bow}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/sonic_bow/charge" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/tick.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/tick.json new file mode 100644 index 0000000..033a6c0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/tick.json @@ -0,0 +1,11 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:tick" + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/sonic_bow/tick" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/steel_battleaxe/shield.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/steel_battleaxe/shield.json new file mode 100644 index 0000000..b2d348f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/steel_battleaxe/shield.json @@ -0,0 +1,73 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.steel_battleaxe": { + "min": 11 + } + } + } + ], + "damage": { + "type": { + "tags": [ + { + "id": "infinity_cave:player_attack", + "expected": true + } + ], + "source_entity": { + "equipment": { + "mainhand": { + "nbt": "{ic:steel_battleaxe}" + } + } + } + } + }, + "entity": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/steel_battleaxe/hit_match" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/charge.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/charge.json new file mode 100644 index 0000000..38da2e6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/charge.json @@ -0,0 +1,20 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:using_item", + "conditions": { + "player": [ + ], + "item": { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:torpedo_harpoon}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/torpedo_harpoon/charge" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/hit.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/hit.json new file mode 100644 index 0000000..f0f858a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/hit.json @@ -0,0 +1,25 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:torpedo_harpoon}" + } + } + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/torpedo_harpoon/durability" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/tick.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/tick.json new file mode 100644 index 0000000..be386d8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/tick.json @@ -0,0 +1,11 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:tick" + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/torpedo_harpoon/tick" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/boots.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/boots.json new file mode 100644 index 0000000..b712ba9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/boots.json @@ -0,0 +1,56 @@ +{ + "criteria": { + "empty": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "feet": { + "items": [ + "minecraft:air" + ] + } + } + } + } + ] + } + }, + "feet": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "feet": { + "tag": "infinity_cave:feet" + } + } + } + } + ], + "items": [ + { + "tag": "infinity_cave:feet" + } + ] + } + } + }, + "requirements": [ + [ + "empty", + "feet" + ] + ], + "rewards": { + "function": "infinity_cave:technical/armor/feet_check" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/chestplate.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/chestplate.json new file mode 100644 index 0000000..d0a098d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/chestplate.json @@ -0,0 +1,56 @@ +{ + "criteria": { + "empty": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:air" + ] + } + } + } + } + ] + } + }, + "chest": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "tag": "infinity_cave:chest" + } + } + } + } + ], + "items": [ + { + "tag": "infinity_cave:chest" + } + ] + } + } + }, + "requirements": [ + [ + "empty", + "chest" + ] + ], + "rewards": { + "function": "infinity_cave:technical/armor/chest_check" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/helmet.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/helmet.json new file mode 100644 index 0000000..5efe1b0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/helmet.json @@ -0,0 +1,56 @@ +{ + "criteria": { + "empty": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "head": { + "items": [ + "minecraft:air" + ] + } + } + } + } + ] + } + }, + "head": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "head": { + "tag": "infinity_cave:head" + } + } + } + } + ], + "items": [ + { + "tag": "infinity_cave:head" + } + ] + } + } + }, + "requirements": [ + [ + "empty", + "head" + ] + ], + "rewards": { + "function": "infinity_cave:technical/armor/head_check" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/leggings.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/leggings.json new file mode 100644 index 0000000..cd6afe4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/armor/leggings.json @@ -0,0 +1,56 @@ +{ + "criteria": { + "empty": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "legs": { + "items": [ + "minecraft:air" + ] + } + } + } + } + ] + } + }, + "legs": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "legs": { + "tag": "infinity_cave:legs" + } + } + } + } + ], + "items": [ + { + "tag": "infinity_cave:legs" + } + ] + } + } + }, + "requirements": [ + [ + "empty", + "legs" + ] + ], + "rewards": { + "function": "infinity_cave:technical/armor/legs_check" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/hit_match/entity_hurt_player.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/hit_match/entity_hurt_player.json new file mode 100644 index 0000000..06c99d4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/hit_match/entity_hurt_player.json @@ -0,0 +1,15 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:entity_hurt_player", + "conditions": { + "damage": { + "source_entity": {} + } + } + } + }, + "rewards": { + "function": "infinity_cave:technical/hit_match/entity_hurt_player" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/hit_match/player_hurt_entity.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/hit_match/player_hurt_entity.json new file mode 100644 index 0000000..b719d4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/hit_match/player_hurt_entity.json @@ -0,0 +1 @@ +{"criteria":{"bit0":{"trigger":"minecraft:player_hurt_entity","conditions":{"damage":{"source_entity":{},"type":{"tags":[{"id":"minecraft:is_fire","expected":false},{"id":"minecraft:bypasses_armor","expected":false},{"id":"minecraft:is_lightning","expected":false},{"id":"minecraft:is_explosion","expected":false}]}},"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit0"},"range":1}]}},"nbit0":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit0"},"range":0}]}},"bit1":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit1"},"range":1}]}},"nbit1":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit1"},"range":0}]}},"bit2":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit2"},"range":1}]}},"nbit2":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit2"},"range":0}]}},"bit3":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit3"},"range":1}]}},"nbit3":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit3"},"range":0}]}},"bit4":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit4"},"range":1}]}},"nbit4":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit4"},"range":0}]}},"bit5":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit5"},"range":1}]}},"nbit5":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit5"},"range":0}]}},"bit6":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit6"},"range":1}]}},"nbit6":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit6"},"range":0}]}},"bit7":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit7"},"range":1}]}},"nbit7":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit7"},"range":0}]}},"bit8":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit8"},"range":1}]}},"nbit8":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit8"},"range":0}]}},"bit9":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit9"},"range":1}]}},"nbit9":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit9"},"range":0}]}},"bit10":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit10"},"range":1}]}},"nbit10":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit10"},"range":0}]}},"bit11":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit11"},"range":1}]}},"nbit11":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit11"},"range":0}]}},"bit12":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit12"},"range":1}]}},"nbit12":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit12"},"range":0}]}},"bit13":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit13"},"range":1}]}},"nbit13":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit13"},"range":0}]}},"bit14":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit14"},"range":1}]}},"nbit14":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit14"},"range":0}]}},"bit15":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit15"},"range":1}]}},"nbit15":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit15"},"range":0}]}}},"requirements":[["bit0","nbit0"],["bit1","nbit1"],["bit2","nbit2"],["bit3","nbit3"],["bit4","nbit4"],["bit5","nbit5"],["bit6","nbit6"],["bit7","nbit7"],["bit8","nbit8"],["bit9","nbit9"],["bit10","nbit10"],["bit11","nbit11"],["bit12","nbit12"],["bit13","nbit13"],["bit14","nbit14"],["bit15","nbit15"]],"rewards":{"function":"infinity_cave:technical/hit_match/player_hurt_entity"}} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/hit_projectile.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/hit_projectile.json new file mode 100644 index 0000000..e32fd7c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/advancements/technical/hit_projectile.json @@ -0,0 +1,32 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "damage": { + "type": { + "tags": [ + { + "id": "minecraft:is_projectile", + "expected": true + } + ] + } + }, + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "team": "ic.mob_team" + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:technical/hit_projectile" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/damage_type/bypass.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/damage_type/bypass.json new file mode 100644 index 0000000..5cb6f9b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/damage_type/bypass.json @@ -0,0 +1,6 @@ +{ + "message_id": "generic", + "exhaustion": 0, + "scaling": "when_caused_by_living_non_player", + "death_message_type": "default" + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/damage_type/magic_bypass.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/damage_type/magic_bypass.json new file mode 100644 index 0000000..0906335 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/damage_type/magic_bypass.json @@ -0,0 +1,6 @@ +{ + "message_id": "magic", + "exhaustion": 0, + "scaling": "when_caused_by_living_non_player", + "death_message_type": "default" + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/display/start.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/display/start.mcfunction new file mode 100644 index 0000000..531aabb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/display/start.mcfunction @@ -0,0 +1,3 @@ +playsound minecraft:entity.ghast.scream hostile @s ~ ~ ~ 1 1 1 + +summon item ~ ~1 ~ {Item:{id:"minecraft:written_book",Count:1b,tag:{title:"Infinity Cave Guide",author:"Frozytime",generation:0,pages:['[{"text":""},{"text":"Infinity Cave Guide\\n","color":"black","bold":true},{"text":"Click on the chapter to switch page\\n\\n"},{"text":"1. Information\\n","clickEvent":{"action":"change_page","value":"2"}},{"text":"2. Not Available\\n","clickEvent":{"action":"change_page","value":"4"}},{"text":"3. Not Available\\n","clickEvent":{"action":"change_page","value":"14"}},{"text":"4. Cave Biomes\\n","clickEvent":{"action":"change_page","value":"23"}},{"text":"5. Not Available\\n","clickEvent":{"action":"change_page","value":"27"}},{"text":"6. Structures\\n","clickEvent":{"action":"change_page","value":"30"}},{"text":"7. Enchantlets\\n","clickEvent":{"action":"change_page","value":"33"}},{"text":"8. Custom Items\\n","clickEvent":{"action":"change_page","value":"35"}},{"text":"9. Not Available\\n","clickEvent":{"action":"change_page","value":"38"}},{"text":"10. Not Available","clickEvent":{"action":"change_page","value":"39"}}]','[{"text":""},{"text":"Information:\\n","bold":true},{"text":"Infinity Cave adds a seemingly infinite cave system beneath the bedrock layer increasing the bedrock layer from -64 to -128. With this comes many new challenges and an overall different way of experiencing PvE. Either as a group or by yourself."}]','{"text":"Be warned, Infinity Cave is quite difficult, it is recommended for beginners to play on easy mode. You can configure all of this by typing /function infinity_cave:settings which can alter several aspects to whatever you\'d like. Though this is still in early beta."}','[{"text":""},{"text":"Mobs\\n","bold":true},{"text":"Infinity Caves do not have any ordinary mob spawns. Instead mobs are spawned when triggering an area. This means it is possible to clear an area of mob-spawning and build a base for example. Mobs also spawn with armor, no matter which mob, even Spiders."}]','{"text":"Mob information:\\n\\nEvery mob: May jump if the player decides to pillar up. \\n\\nWhen shot there is a 20% chance a mob becomes enranged, receiving Strength and Speed for 10 seconds and clears lava/cobwebs around itself. "}','{"text":"Zombie: Normal health, normal speed, normal attack damage and may spawn as a baby with increased speed.\\n\\nSkeleton: Normal health, normal speed, normal attack damage and may spawn as a spider jokey."}','{"text":"Spider: Low health, higher speed, normal attack, has increased attack knockback and has a 25% chance of webbing the player upon hit. May also disable shields.\\n\\nPillager: Normal health, normal speed, normal attack damage. May have different projectiles."}','{"text":"Slime: High health, low speed, high attack damage and every now and then, it may leap at the player. Destroys blocks around itself when it spawns.\\n\\nWither Skeleton: Normal health, normal speed, high attack damage and withers the player."}','{"text":"Vindicator: Normal health, normal speed, high attack damage and may disable shields.\\n\\nIron Golem: Extreme health, normal speed, normal attack damage and reduced knockback resistance. Destroys block around itself when it spawns."}','{"text":"Enderman: High health, normal speed, normal attack damage and is instantly aggressive. Be careful.\\n\\nZombified Piglin: Normal health, normal speed, high attack damage, always has Fire Aspect and may spawn as a baby."}','{"text":"Ravager: Very high health, normal speed, normal attack damage and reduced knockback resistance. Destroys block around itself when it spawns. May destroy blocks around it occasionally."}','{"text":"Drowned: Normal health, normal speed, normal attack damage and may spawn as a baby. Has a trident most of the time.\\n\\nMagician: Shoots fire sparks every 5 seconds. Also shoots a blizzard dealing superfast damage and slows the player."}','{"text":"Alchemist: Every 5 seconds the alchemist shoots a projectile with random negative effects if a player is hit.\\n\\nBomber: The most dangerous custom mob. A creeper which continously launches TNT and detonates itself damaging everything around it."}','[{"text":""},{"text":"Mob Tiers\\n","bold":true},{"text":"Mobs are categoried into 5 tiers: Common, Uncommon, Rare, Epic and Legendary.\\n\\nThese tiers differ by their spawn animation when triggered.\\n\\nHigher tiers become more common the more you progress."}]','{"text":"Common: Does not spawn Magician, Alchemist and Bomber mobs. \\n\\nMay drop Tier I Enchantlets and generic items. \\n\\nHas an absurdly small chance of dropping a Totem of Undying and Uncommon loot."}','{"text":"Uncommon: Does not spawn Magician, Alchemist and Bomber mobs. \\n\\nMay drop Tier II Enchantlets and higher quality items. \\n\\nHas an absurdly small chance of dropping a Totem of Undying and Rare loot."}','{"text":"Rare: Does not spawn the Bomber mob. \\n\\nMay drop Tier III Enchantlets and good/custom items. \\n\\nHas a small chance of dropping a Totem of Undying, Epic loot and Safety Banners."}','{"text":"Epic: Spawns every mob type. \\n\\nMay drop Tier IV Enchantlets and top-tier items. \\n\\nHas a chance of dropping a Totem of Undying, Safety Banners and a small chance of dropping Legendary loot."}','{"text":"Legendary: Spawns every mob type. \\n\\nMay drop Tier V Enchantlets and god-tier weapons/armor. \\n\\nEvery Legendary will have a visible bossbar.\\n\\nLegendaries have random elements."}','{"text":"Water element: Hits spawn water underneath the player and has a chance of spawning a wave depleting cobwebs and crazy damage.\\n\\nFire Element: Sets everything on fire and spawns Fire Spirals causing massive explosions."}','{"text":"Wind element: Cannot be crit by ordinary means, slows the player and has a chance to spawn Tornadoes following the player.\\n\\nIce element: Slows the player when hit and causes Ice to fall dealing massive damage towards the player."}','{"text":"Ground element: Deals damage to grounded players in a radius. Can cause Earthquake reaching its radius. Try jumping to avoid.\\n\\nToxic element: Has a small chance to steal positive effects. Spawns a toxic cloud causing massive damage and negative effects. "}','[{"text":""},{"text":"Cave Biomes\\n","bold":true},{"text":"Deeprock Caverns: The most common biome, has Dinosaur structures. May drop a biome armor piece when a legendary is killed here.\\n\\nDeep Dark: Minecraft\'s Deep Dark is also here which holds the Temple structure. Beware of the Warden."}]','{"text":"Amethyst Caves: A glorious cave with the Altar structure. Is quite rare and small in size usually.\\n\\nFrozen Caves: A frozen wasteland holding an ancient technological structure. Defeating a legendary may drop a biome-specfic piece."}','{"text":"Molten Caves: Lava. Holds the Knuckle structure. May drop a biome-specific piece when a legendary is defeated.\\n\\nSulfide Caves: A toxic wasteland. Water poisons the player. Holds a Rotten Village. May drop a biome-specific piece as well."}','{"text":"Limestone Grotto: Has a lot of dripstone. Holds the Limestone Houses structure. One can find shulker shells in this biome. Earthquake legendaries tend to be more scary in this biome."}','[{"text":""},{"text":"Offhand Items\\n","bold":true},{"text":"Sword: Increases the mob\'s attack damage by 10%\\n\\nLeather boots: Increases the mob\'s speed by 10%\\n\\nShield: Increases the mob\'s armor and armor toughness."}]','{"text":"Goat horn: Increases the mob\'s knockback. Scales with tier.\\n\\nChorus Fruit: Has a 12.5% chance to use a Chorus Fruit upon being hit.\\n\\nTotem of Undying: Epics and above may have totems."}','{"text":"Firework Rocket: Mob may launch itself towards the player.\\n\\nPillars and Skeleton will have custom tipped arrows in their offhand. Pillagers may even have rockets.\\n\\nRanged mobs do not get extra attack damage offhand items."}','[{"text":""},{"text":"Structures\\n","bold":true},{"text":"Dinosaur: A giant dinosaur fossil found in Deeprock Caverns.\\n\\nSulfide Huts: A village in Sulfide Caves. Holds potions and Suspicious stew.\\n\\nFrozen Robot: Lost technology found in Frozen Caves. May contain traps."}]','{"text":"Knuckle: Found in Molten Caves. Contains Ancient Debris and maybe a trap.\\n\\nDeep Temple: Found in Deep Dark, contains a library.\\n\\nAmethyst Altar: Can teleport players to the surface after right clicking the crystal. "}','{"text":"Limestone Houses: Holds a bunch of useful functional blocks such as Blast Furnace, Grindstone etc. Its loot may contain shulker shells."}','[{"text":""},{"text":"Enchantlets\\n","bold":true},{"text":"Mobs may drop Enchantlets. Enchantlets can be used to enchant gear above the vanilla limit. However, at the cost of spending more levels. There are different tiers of Enchantlets depending on the mob\'s tier. Use these to your advantage."}]','{"text":"Enchantlets differ from vanilla enchanting by setting enchantments instead of randomly enchanting, only essential enchants will be given through Enchantlets. Protection and Sharpness to name a few. It can even exceed the vanilla limit."}','[{"text":""},{"text":"Custom Items\\n","bold":true},{"text":"Infinity Cave introduces a vast amount of different items.\\n\\nLegendary mobs may drop weapons such as the Amethyst Blade or the Steel Battleaxe. These weapons are much stronger than Netherite."}]','{"text":"Safety Banner: Clears a 50x50 area of mob-spawning when placed. \\n\\nFireball: Found in Molten Caves by killing rares and above.\\n\\nIce Spark: Found in Frozen Caves by killing rares and above."}','{"text":"Magic Repair: Usually found by killing Legendaries, fully repairs your armor at the cost of 10 levels.\\n\\nTeleport: Found by defeating higher tier Endermen.\\n\\nLight Emblem: Spawns a ton of mobs around its area, player-dependent."}','[{"text":""},{"text":"Progression\\n","bold":true},{"text":"As the player defeat mobs their progression will increase. The amount of progression will determine the spawn rates for tiers to spawn. The more kills, the higher the likelihood of higher tiers spawning. This is configurable in the settings."}]','[{"text":""},{"text":"Strategies\\n","bold":true},{"text":"Mobs here are no joke. Death is always near. It is important to conserve good items for strong mobs. \\n\\nKeyword here is items. Some items are essential to circumvent risk and secure yourself as much as possible."}]','{"text":"Cobwebs: Cobwebs are incredibly useful as a method of preventing mobility. In this instance they can be used to trap a spawning mob during their animation, and in general when they are moving towards you. Deeprock Caverns may drop cobwebs as a loot drop."}','{"text":"Enchantlets: In order to snowball your way into this it is important to use Enchantlets wisely. Prioritize enchanting swords with higher tier Enchantlets first. As they make your damage yield much higher. Make sure to pickup a grindstone to reroll enchants."}','{"text":"Ender Pearls: Dropped by Enderman, usually in higher quanitites than vanilla when it comes to endermen down here. These are generally useful for getting out of sticky situations such as an overwhelming amount of mobs, or getting stuck in a cobweb. "}','{"text":"Splash Potion of Health: Generally useful for instantly healing in a sticky situation.\\n\\nSafety Banner: Incredibly useful for fighting a strong mob.\\n\\nShield: Blocks most attacks and is especially useful against ranged mobs."}','{"text":"There are a few mobs which require different strategies to beat. One of them is the Bomber. This creature is incredibly dangerous to fight. Using a ranged weapon would have the benefit of avoiding explosions and a more controlled environment."}','{"text":"The Enderman is a special breed, it is impossible to cobweb and is inescapable. However, there is one trick you can use to stop it in its tracks. Look it straight in its eyes and it will immediately freeze. Giving you time to think or a friend of yours to end it off."}','{"text":"Thank you for downloading! \\n\\n\\nMake sure to REPORT any bugs.\\n\\nGood luck and enjoy.\\n\\nYou may need it.\\n\\n\\n\\n\\n"}']}}} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/init.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/init.mcfunction new file mode 100644 index 0000000..101a85f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/init.mcfunction @@ -0,0 +1,78 @@ +# lcg +scoreboard objectives add ic.math dummy +scoreboard objectives add ic.math2 dummy +scoreboard objectives add ic.const dummy +scoreboard players set #ic20 ic.const 20 +scoreboard players set #ic24 ic.const 24 +scoreboard players set #ic25 ic.const 25 +scoreboard players set #ic ic.const 2 +scoreboard players set #ic10 ic.const 10 +scoreboard players set #ic100 ic.const 100 +scoreboard players set #ic200 ic.const 200 +scoreboard players set #ic1000 ic.const 1000 +scoreboard players set #ic10000 ic.const 10000 +scoreboard players set #iclcg ic.const 1103515245 + +# In order for motion to work +forceload add 0 0 0 0 + +# Scoreboard integer +scoreboard objectives add ic.int dummy +scoreboard objectives add ic.id dummy +scoreboard objectives add ic.data dummy +scoreboard objectives add ic.animate dummy +scoreboard objectives add ic.altar dummy +scoreboard objectives add ic.uuid dummy +scoreboard objectives add ic.math dummy +scoreboard objectives add ic.offhand dummy +scoreboard objectives add ic.hit_projectile custom:play_time + +# armor $ weapons +scoreboard objectives add ic.torpedo custom:play_time +scoreboard objectives add ic.sonic custom:play_time +scoreboard objectives add ic.damage_blocked minecraft.custom:minecraft.damage_blocked_by_shield +scoreboard objectives add ic.torpedo_charge dummy +scoreboard objectives add ic.sonic_charge dummy +scoreboard objectives add ic.molten_hammer custom:play_time +scoreboard objectives add ic.amethyst_blade custom:play_time +scoreboard objectives add ic.steel_battleaxe custom:play_time +scoreboard objectives add ic.bastion_piercer custom:play_time + +# entity hit detection +scoreboard objectives add ic.been_shot dummy +scoreboard objectives add ic.const dummy +scoreboard players set 2 ic.const 2 +scoreboard players set 20 ic.const 20 +scoreboard players set -1 ic.const -1 +scoreboard objectives add ic.phit dummy +scoreboard objectives add ic.hit_cd dummy +scoreboard players set #ic20 ic.const 420 +scoreboard players set #ic60 ic.const 360 +scoreboard players set #ic00 ic.const 300 +scoreboard players set #ic0 ic.const 240 +scoreboard players set #ic180 ic.const 180 +scoreboard players set #ic120 ic.const 120 +scoreboard players set #ic60 ic.const 60 + +scoreboard objectives add ic.id dummy +scoreboard objectives add ic.bit0 dummy +scoreboard objectives add ic.bit1 dummy +scoreboard objectives add ic.bit2 dummy +scoreboard objectives add ic.bit3 dummy +scoreboard objectives add ic.bit4 dummy +scoreboard objectives add ic.bit5 dummy +scoreboard objectives add ic.bit6 dummy +scoreboard objectives add ic.bit7 dummy +scoreboard objectives add ic.bit8 dummy +scoreboard objectives add ic.bit9 dummy +scoreboard objectives add ic.bit10 dummy +scoreboard objectives add ic.bit11 dummy +scoreboard objectives add ic.bit12 dummy +scoreboard objectives add ic.bit13 dummy +scoreboard objectives add ic.bit14 dummy +scoreboard objectives add ic.bit15 dummy + +# Misc +scoreboard objectives add ic.health health +gamerule commandModificationBlockLimit 10000000 +scoreboard players set #ic1000 ic.const 1000 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/load.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/load.mcfunction new file mode 100644 index 0000000..45f72bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/load.mcfunction @@ -0,0 +1,5 @@ +scoreboard players set @s ic.sonic_charge 0 + +scoreboard players set @s ic.torpedo_charge 0 + +execute store result score @s ic.progression run scoreboard players get @s ic.progression \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/entity.mcfunction new file mode 100644 index 0000000..8460257 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/entity.mcfunction @@ -0,0 +1 @@ +scoreboard players set @s ic.altar 85 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/as.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/as.mcfunction new file mode 100644 index 0000000..4850f12 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/as.mcfunction @@ -0,0 +1,3 @@ +tp ^ ^ ^ + +execute at @s run particle minecraft:reverse_portal ~ ~0.8 ~ 0 0 0 0.6 100 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f1.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f1.mcfunction new file mode 100644 index 0000000..8c61279 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f1.mcfunction @@ -0,0 +1,22 @@ +particle witch ^0.000 ^0.000 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.020 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.040 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.060 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.080 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.100 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.120 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.140 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.160 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.180 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.200 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.220 ^0.000 0 0 0 0 1 force @a + +particle minecraft:witch ~ ~2 ~ 0.2 0.4 0.2 0 5 force @a +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.04 1 +particle minecraft:flash ~ ~ ~ 0 0.5 0.5 0.5 100 force +particle minecraft:end_rod ~ ~ ~ 0 0.5 0.5 0.5 1000 force +playsound minecraft:entity.wither.spawn master @a[distance=..20] ~ ~ ~ 1 0.1 1 + +execute as @p[tag=ic.altar] run tag @s remove ic.altar + +execute as @a[distance=..5] positioned over motion_blocking run function infinity_cave:mechanics/altar/frames/as \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f10.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f10.mcfunction new file mode 100644 index 0000000..86c9af2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f10.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.030 ^2.400 ^0.039 0 0 0 0 1 force @a +particle witch ^0.028 ^2.420 ^0.041 0 0 0 0 1 force @a +particle witch ^0.026 ^2.440 ^0.043 0 0 0 0 1 force @a +particle witch ^0.023 ^2.460 ^0.046 0 0 0 0 1 force @a +particle witch ^0.021 ^2.480 ^0.048 0 0 0 0 1 force @a +particle witch ^0.018 ^2.500 ^0.050 0 0 0 0 1 force @a +particle witch ^0.016 ^2.520 ^0.052 0 0 0 0 1 force @a +particle witch ^0.013 ^2.540 ^0.053 0 0 0 0 1 force @a +particle witch ^0.010 ^2.560 ^0.055 0 0 0 0 1 force @a +particle witch ^0.006 ^2.580 ^0.056 0 0 0 0 1 force @a +particle witch ^0.003 ^2.600 ^0.057 0 0 0 0 1 force @a +particle witch ^-0.000 ^2.620 ^0.058 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.28 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f11.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f11.mcfunction new file mode 100644 index 0000000..9952148 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f11.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.004 ^2.640 ^0.059 0 0 0 0 1 force @a +particle witch ^-0.008 ^2.660 ^0.060 0 0 0 0 1 force @a +particle witch ^-0.011 ^2.680 ^0.060 0 0 0 0 1 force @a +particle witch ^-0.015 ^2.700 ^0.060 0 0 0 0 1 force @a +particle witch ^-0.019 ^2.720 ^0.060 0 0 0 0 1 force @a +particle witch ^-0.023 ^2.740 ^0.059 0 0 0 0 1 force @a +particle witch ^-0.027 ^2.760 ^0.059 0 0 0 0 1 force @a +particle witch ^-0.031 ^2.780 ^0.058 0 0 0 0 1 force @a +particle witch ^-0.035 ^2.800 ^0.057 0 0 0 0 1 force @a +particle witch ^-0.038 ^2.820 ^0.055 0 0 0 0 1 force @a +particle witch ^-0.042 ^2.840 ^0.054 0 0 0 0 1 force @a +particle witch ^-0.046 ^2.860 ^0.052 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.30 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f12.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f12.mcfunction new file mode 100644 index 0000000..a224fb9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f12.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.050 ^2.880 ^0.050 0 0 0 0 1 force @a +particle witch ^-0.053 ^2.900 ^0.047 0 0 0 0 1 force @a +particle witch ^-0.057 ^2.920 ^0.045 0 0 0 0 1 force @a +particle witch ^-0.060 ^2.940 ^0.042 0 0 0 0 1 force @a +particle witch ^-0.064 ^2.960 ^0.039 0 0 0 0 1 force @a +particle witch ^-0.067 ^2.980 ^0.035 0 0 0 0 1 force @a +particle witch ^-0.070 ^3.000 ^0.031 0 0 0 0 1 force @a +particle witch ^-0.072 ^3.020 ^0.028 0 0 0 0 1 force @a +particle witch ^-0.075 ^3.040 ^0.024 0 0 0 0 1 force @a +particle witch ^-0.077 ^3.060 ^0.019 0 0 0 0 1 force @a +particle witch ^-0.079 ^3.080 ^0.015 0 0 0 0 1 force @a +particle witch ^-0.081 ^3.100 ^0.010 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.32 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f13.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f13.mcfunction new file mode 100644 index 0000000..a8fac87 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f13.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.082 ^3.120 ^0.005 0 0 0 0 1 force @a +particle witch ^-0.084 ^3.140 ^0.000 0 0 0 0 1 force @a +particle witch ^-0.085 ^3.160 ^-0.005 0 0 0 0 1 force @a +particle witch ^-0.085 ^3.180 ^-0.010 0 0 0 0 1 force @a +particle witch ^-0.086 ^3.200 ^-0.015 0 0 0 0 1 force @a +particle witch ^-0.086 ^3.220 ^-0.020 0 0 0 0 1 force @a +particle witch ^-0.085 ^3.240 ^-0.026 0 0 0 0 1 force @a +particle witch ^-0.085 ^3.260 ^-0.031 0 0 0 0 1 force @a +particle witch ^-0.084 ^3.280 ^-0.037 0 0 0 0 1 force @a +particle witch ^-0.082 ^3.300 ^-0.042 0 0 0 0 1 force @a +particle witch ^-0.080 ^3.320 ^-0.048 0 0 0 0 1 force @a +particle witch ^-0.078 ^0.007 ^-0.053 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.34 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f14.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f14.mcfunction new file mode 100644 index 0000000..dbfffc2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f14.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.076 ^0.027 ^-0.058 0 0 0 0 1 force @a +particle witch ^-0.073 ^0.047 ^-0.064 0 0 0 0 1 force @a +particle witch ^-0.070 ^0.067 ^-0.069 0 0 0 0 1 force @a +particle witch ^-0.067 ^0.087 ^-0.074 0 0 0 0 1 force @a +particle witch ^-0.063 ^0.107 ^-0.078 0 0 0 0 1 force @a +particle witch ^-0.059 ^0.127 ^-0.083 0 0 0 0 1 force @a +particle witch ^-0.054 ^0.147 ^-0.087 0 0 0 0 1 force @a +particle witch ^-0.049 ^0.167 ^-0.091 0 0 0 0 1 force @a +particle witch ^-0.044 ^0.187 ^-0.095 0 0 0 0 1 force @a +particle witch ^-0.039 ^0.207 ^-0.099 0 0 0 0 1 force @a +particle witch ^-0.033 ^0.227 ^-0.102 0 0 0 0 1 force @a +particle witch ^-0.027 ^0.247 ^-0.105 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.36 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f15.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f15.mcfunction new file mode 100644 index 0000000..15053ca --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f15.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.021 ^0.267 ^-0.108 0 0 0 0 1 force @a +particle witch ^-0.015 ^0.287 ^-0.110 0 0 0 0 1 force @a +particle witch ^-0.008 ^0.307 ^-0.112 0 0 0 0 1 force @a +particle witch ^-0.002 ^0.327 ^-0.114 0 0 0 0 1 force @a +particle witch ^0.005 ^0.347 ^-0.115 0 0 0 0 1 force @a +particle witch ^0.012 ^0.367 ^-0.116 0 0 0 0 1 force @a +particle witch ^0.019 ^0.387 ^-0.116 0 0 0 0 1 force @a +particle witch ^0.026 ^0.407 ^-0.116 0 0 0 0 1 force @a +particle witch ^0.034 ^0.427 ^-0.115 0 0 0 0 1 force @a +particle witch ^0.041 ^0.447 ^-0.114 0 0 0 0 1 force @a +particle witch ^0.048 ^0.467 ^-0.113 0 0 0 0 1 force @a +particle witch ^0.055 ^0.487 ^-0.111 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.38 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f16.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f16.mcfunction new file mode 100644 index 0000000..17e156c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f16.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.063 ^0.507 ^-0.108 0 0 0 0 1 force @a +particle witch ^0.070 ^0.527 ^-0.105 0 0 0 0 1 force @a +particle witch ^0.077 ^0.547 ^-0.102 0 0 0 0 1 force @a +particle witch ^0.084 ^0.567 ^-0.098 0 0 0 0 1 force @a +particle witch ^0.090 ^0.587 ^-0.094 0 0 0 0 1 force @a +particle witch ^0.097 ^0.607 ^-0.089 0 0 0 0 1 force @a +particle witch ^0.103 ^0.627 ^-0.084 0 0 0 0 1 force @a +particle witch ^0.109 ^0.647 ^-0.079 0 0 0 0 1 force @a +particle witch ^0.115 ^0.667 ^-0.073 0 0 0 0 1 force @a +particle witch ^0.120 ^0.687 ^-0.066 0 0 0 0 1 force @a +particle witch ^0.125 ^0.707 ^-0.060 0 0 0 0 1 force @a +particle witch ^0.130 ^0.727 ^-0.053 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.40 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f17.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f17.mcfunction new file mode 100644 index 0000000..e294fd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f17.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.134 ^0.747 ^-0.045 0 0 0 0 1 force @a +particle witch ^0.138 ^0.767 ^-0.038 0 0 0 0 1 force @a +particle witch ^0.141 ^0.787 ^-0.030 0 0 0 0 1 force @a +particle witch ^0.144 ^0.807 ^-0.021 0 0 0 0 1 force @a +particle witch ^0.146 ^0.827 ^-0.013 0 0 0 0 1 force @a +particle witch ^0.148 ^0.847 ^-0.004 0 0 0 0 1 force @a +particle witch ^0.150 ^0.867 ^0.005 0 0 0 0 1 force @a +particle witch ^0.150 ^0.887 ^0.014 0 0 0 0 1 force @a +particle witch ^0.151 ^0.907 ^0.023 0 0 0 0 1 force @a +particle witch ^0.150 ^0.927 ^0.033 0 0 0 0 1 force @a +particle witch ^0.150 ^0.947 ^0.042 0 0 0 0 1 force @a +particle witch ^0.148 ^0.967 ^0.051 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.42 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f18.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f18.mcfunction new file mode 100644 index 0000000..570d0f6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f18.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.146 ^0.987 ^0.061 0 0 0 0 1 force @a +particle witch ^0.144 ^1.007 ^0.070 0 0 0 0 1 force @a +particle witch ^0.140 ^1.027 ^0.079 0 0 0 0 1 force @a +particle witch ^0.137 ^1.047 ^0.088 0 0 0 0 1 force @a +particle witch ^0.132 ^1.067 ^0.097 0 0 0 0 1 force @a +particle witch ^0.127 ^1.087 ^0.106 0 0 0 0 1 force @a +particle witch ^0.122 ^1.107 ^0.114 0 0 0 0 1 force @a +particle witch ^0.116 ^1.127 ^0.123 0 0 0 0 1 force @a +particle witch ^0.109 ^1.147 ^0.131 0 0 0 0 1 force @a +particle witch ^0.102 ^1.167 ^0.138 0 0 0 0 1 force @a +particle witch ^0.095 ^1.187 ^0.145 0 0 0 0 1 force @a +particle witch ^0.086 ^1.207 ^0.152 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.44 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f19.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f19.mcfunction new file mode 100644 index 0000000..f2bbbc7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f19.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.078 ^1.227 ^0.158 0 0 0 0 1 force @a +particle witch ^0.069 ^1.247 ^0.164 0 0 0 0 1 force @a +particle witch ^0.059 ^1.267 ^0.169 0 0 0 0 1 force @a +particle witch ^0.050 ^1.287 ^0.174 0 0 0 0 1 force @a +particle witch ^0.039 ^1.307 ^0.178 0 0 0 0 1 force @a +particle witch ^0.029 ^1.327 ^0.182 0 0 0 0 1 force @a +particle witch ^0.018 ^1.347 ^0.185 0 0 0 0 1 force @a +particle witch ^0.007 ^1.367 ^0.187 0 0 0 0 1 force @a +particle witch ^-0.004 ^1.387 ^0.189 0 0 0 0 1 force @a +particle witch ^-0.016 ^1.407 ^0.190 0 0 0 0 1 force @a +particle witch ^-0.027 ^1.427 ^0.190 0 0 0 0 1 force @a +particle witch ^-0.039 ^1.447 ^0.190 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.46 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f2.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f2.mcfunction new file mode 100644 index 0000000..3ff7d35 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f2.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.000 ^0.480 ^0.002 0 0 0 0 1 force @a +particle witch ^0.000 ^0.500 ^0.002 0 0 0 0 1 force @a +particle witch ^0.000 ^0.520 ^0.002 0 0 0 0 1 force @a +particle witch ^-0.000 ^0.540 ^0.002 0 0 0 0 1 force @a +particle witch ^-0.000 ^0.560 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.000 ^0.580 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.001 ^0.600 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.001 ^0.620 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.001 ^0.640 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.001 ^0.660 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.002 ^0.680 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.002 ^0.700 ^0.004 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.08 1 diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f20.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f20.mcfunction new file mode 100644 index 0000000..5956841 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f20.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.051 ^1.467 ^0.189 0 0 0 0 1 force @a +particle witch ^-0.063 ^1.487 ^0.187 0 0 0 0 1 force @a +particle witch ^-0.074 ^1.507 ^0.184 0 0 0 0 1 force @a +particle witch ^-0.086 ^1.527 ^0.181 0 0 0 0 1 force @a +particle witch ^-0.097 ^1.547 ^0.177 0 0 0 0 1 force @a +particle witch ^-0.109 ^1.567 ^0.172 0 0 0 0 1 force @a +particle witch ^-0.120 ^1.587 ^0.167 0 0 0 0 1 force @a +particle witch ^-0.131 ^1.607 ^0.161 0 0 0 0 1 force @a +particle witch ^-0.141 ^1.627 ^0.154 0 0 0 0 1 force @a +particle witch ^-0.151 ^1.647 ^0.146 0 0 0 0 1 force @a +particle witch ^-0.161 ^1.667 ^0.138 0 0 0 0 1 force @a +particle witch ^-0.170 ^1.687 ^0.129 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.46 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f21.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f21.mcfunction new file mode 100644 index 0000000..9a78d7c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f21.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.179 ^1.707 ^0.120 0 0 0 0 1 force @a +particle witch ^-0.188 ^1.727 ^0.109 0 0 0 0 1 force @a +particle witch ^-0.195 ^1.747 ^0.099 0 0 0 0 1 force @a +particle witch ^-0.203 ^1.767 ^0.088 0 0 0 0 1 force @a +particle witch ^-0.209 ^1.787 ^0.076 0 0 0 0 1 force @a +particle witch ^-0.215 ^1.807 ^0.064 0 0 0 0 1 force @a +particle witch ^-0.220 ^1.827 ^0.051 0 0 0 0 1 force @a +particle witch ^-0.224 ^1.847 ^0.038 0 0 0 0 1 force @a +particle witch ^-0.228 ^1.867 ^0.025 0 0 0 0 1 force @a +particle witch ^-0.231 ^1.887 ^0.011 0 0 0 0 1 force @a +particle witch ^-0.233 ^1.907 ^-0.003 0 0 0 0 1 force @a +particle witch ^-0.234 ^1.927 ^-0.017 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.48 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f22.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f22.mcfunction new file mode 100644 index 0000000..ce73603 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f22.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.234 ^1.947 ^-0.031 0 0 0 0 1 force @a +particle witch ^-0.234 ^1.967 ^-0.045 0 0 0 0 1 force @a +particle witch ^-0.233 ^1.987 ^-0.060 0 0 0 0 1 force @a +particle witch ^-0.230 ^2.007 ^-0.074 0 0 0 0 1 force @a +particle witch ^-0.227 ^2.027 ^-0.089 0 0 0 0 1 force @a +particle witch ^-0.223 ^2.047 ^-0.103 0 0 0 0 1 force @a +particle witch ^-0.218 ^2.067 ^-0.117 0 0 0 0 1 force @a +particle witch ^-0.212 ^2.087 ^-0.131 0 0 0 0 1 force @a +particle witch ^-0.205 ^2.107 ^-0.144 0 0 0 0 1 force @a +particle witch ^-0.198 ^2.127 ^-0.157 0 0 0 0 1 force @a +particle witch ^-0.189 ^2.147 ^-0.170 0 0 0 0 1 force @a +particle witch ^-0.180 ^2.167 ^-0.183 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.50 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f23.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f23.mcfunction new file mode 100644 index 0000000..88fe6ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f23.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.170 ^2.187 ^-0.195 0 0 0 0 1 force @a +particle witch ^-0.159 ^2.207 ^-0.206 0 0 0 0 1 force @a +particle witch ^-0.148 ^2.227 ^-0.217 0 0 0 0 1 force @a +particle witch ^-0.136 ^2.247 ^-0.227 0 0 0 0 1 force @a +particle witch ^-0.123 ^2.267 ^-0.236 0 0 0 0 1 force @a +particle witch ^-0.109 ^2.287 ^-0.245 0 0 0 0 1 force @a +particle witch ^-0.095 ^2.307 ^-0.253 0 0 0 0 1 force @a +particle witch ^-0.080 ^2.327 ^-0.260 0 0 0 0 1 force @a +particle witch ^-0.065 ^2.347 ^-0.266 0 0 0 0 1 force @a +particle witch ^-0.049 ^2.367 ^-0.271 0 0 0 0 1 force @a +particle witch ^-0.033 ^2.387 ^-0.276 0 0 0 0 1 force @a +particle witch ^-0.016 ^2.407 ^-0.279 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.52 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f24.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f24.mcfunction new file mode 100644 index 0000000..e5ddcc6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f24.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.000 ^2.427 ^-0.281 0 0 0 0 1 force @a +particle witch ^0.017 ^2.447 ^-0.283 0 0 0 0 1 force @a +particle witch ^0.035 ^2.467 ^-0.283 0 0 0 0 1 force @a +particle witch ^0.052 ^2.487 ^-0.283 0 0 0 0 1 force @a +particle witch ^0.069 ^2.507 ^-0.281 0 0 0 0 1 force @a +particle witch ^0.086 ^2.527 ^-0.278 0 0 0 0 1 force @a +particle witch ^0.104 ^2.547 ^-0.274 0 0 0 0 1 force @a +particle witch ^0.121 ^2.567 ^-0.269 0 0 0 0 1 force @a +particle witch ^0.138 ^2.587 ^-0.264 0 0 0 0 1 force @a +particle witch ^0.154 ^2.607 ^-0.257 0 0 0 0 1 force @a +particle witch ^0.170 ^2.627 ^-0.248 0 0 0 0 1 force @a +particle witch ^0.186 ^2.647 ^-0.239 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.54 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f25.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f25.mcfunction new file mode 100644 index 0000000..762b3a8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f25.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.202 ^2.667 ^-0.229 0 0 0 0 1 force @a +particle witch ^0.216 ^2.687 ^-0.218 0 0 0 0 1 force @a +particle witch ^0.231 ^2.707 ^-0.206 0 0 0 0 1 force @a +particle witch ^0.244 ^2.727 ^-0.193 0 0 0 0 1 force @a +particle witch ^0.257 ^2.747 ^-0.180 0 0 0 0 1 force @a +particle witch ^0.269 ^2.767 ^-0.165 0 0 0 0 1 force @a +particle witch ^0.280 ^2.787 ^-0.149 0 0 0 0 1 force @a +particle witch ^0.291 ^2.807 ^-0.133 0 0 0 0 1 force @a +particle witch ^0.300 ^2.827 ^-0.116 0 0 0 0 1 force @a +particle witch ^0.309 ^2.847 ^-0.099 0 0 0 0 1 force @a +particle witch ^0.316 ^2.867 ^-0.081 0 0 0 0 1 force @a +particle witch ^0.322 ^2.887 ^-0.062 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.56 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f26.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f26.mcfunction new file mode 100644 index 0000000..488e8e3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f26.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.328 ^2.907 ^-0.043 0 0 0 0 1 force @a +particle witch ^0.332 ^2.927 ^-0.023 0 0 0 0 1 force @a +particle witch ^0.335 ^2.947 ^-0.003 0 0 0 0 1 force @a +particle witch ^0.336 ^2.967 ^0.017 0 0 0 0 1 force @a +particle witch ^0.337 ^2.987 ^0.037 0 0 0 0 1 force @a +particle witch ^0.336 ^3.007 ^0.058 0 0 0 0 1 force @a +particle witch ^0.334 ^3.027 ^0.078 0 0 0 0 1 force @a +particle witch ^0.331 ^3.047 ^0.099 0 0 0 0 1 force @a +particle witch ^0.326 ^3.067 ^0.119 0 0 0 0 1 force @a +particle witch ^0.321 ^3.087 ^0.140 0 0 0 0 1 force @a +particle witch ^0.314 ^3.107 ^0.159 0 0 0 0 1 force @a +particle witch ^0.305 ^3.127 ^0.179 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.58 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f27.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f27.mcfunction new file mode 100644 index 0000000..52eec59 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f27.mcfunction @@ -0,0 +1,21 @@ + +particle witch ^0.296 ^3.147 ^0.198 0 0 0 0 1 force @a +particle witch ^0.285 ^3.167 ^0.217 0 0 0 0 1 force @a +particle witch ^0.273 ^3.187 ^0.235 0 0 0 0 1 force @a +particle witch ^0.260 ^3.207 ^0.253 0 0 0 0 1 force @a +particle witch ^0.246 ^3.227 ^0.269 0 0 0 0 1 force @a +particle witch ^0.231 ^3.247 ^0.286 0 0 0 0 1 force @a +particle witch ^0.215 ^3.267 ^0.301 0 0 0 0 1 force @a +particle witch ^0.198 ^3.287 ^0.315 0 0 0 0 1 force @a +particle witch ^0.179 ^3.307 ^0.328 0 0 0 0 1 force @a +particle witch ^0.160 ^3.327 ^0.340 0 0 0 0 1 force @a +particle witch ^0.141 ^0.013 ^0.351 0 0 0 0 1 force @a +particle witch ^0.120 ^0.033 ^0.361 0 0 0 0 1 force @a + +function infinity_cave:mechanics/altar/sphere + +particle minecraft:flash ~ ~ ~ 0 0 0 0 10 force +particle minecraft:end_rod ~ ~ ~ 0 0.5 0.5 1 100 force +playsound minecraft:entity.wither.shoot master @a[distance=..20] ~ ~ ~ 1 1.5 1 + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.60 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f28.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f28.mcfunction new file mode 100644 index 0000000..c97259f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f28.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.099 ^0.053 ^0.370 0 0 0 0 1 force @a +particle witch ^0.077 ^0.073 ^0.378 0 0 0 0 1 force @a +particle witch ^0.054 ^0.093 ^0.384 0 0 0 0 1 force @a +particle witch ^0.031 ^0.113 ^0.389 0 0 0 0 1 force @a +particle witch ^0.008 ^0.133 ^0.392 0 0 0 0 1 force @a +particle witch ^-0.016 ^0.153 ^0.394 0 0 0 0 1 force @a +particle witch ^-0.039 ^0.173 ^0.395 0 0 0 0 1 force @a +particle witch ^-0.063 ^0.193 ^0.394 0 0 0 0 1 force @a +particle witch ^-0.087 ^0.213 ^0.392 0 0 0 0 1 force @a +particle witch ^-0.111 ^0.233 ^0.388 0 0 0 0 1 force @a +particle witch ^-0.135 ^0.253 ^0.383 0 0 0 0 1 force @a +particle witch ^-0.159 ^0.273 ^0.376 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.62 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f29.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f29.mcfunction new file mode 100644 index 0000000..89d9d68 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f29.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.182 ^0.293 ^0.368 0 0 0 0 1 force @a +particle witch ^-0.205 ^0.313 ^0.359 0 0 0 0 1 force @a +particle witch ^-0.228 ^0.333 ^0.348 0 0 0 0 1 force @a +particle witch ^-0.250 ^0.353 ^0.335 0 0 0 0 1 force @a +particle witch ^-0.271 ^0.373 ^0.322 0 0 0 0 1 force @a +particle witch ^-0.291 ^0.393 ^0.307 0 0 0 0 1 force @a +particle witch ^-0.311 ^0.413 ^0.290 0 0 0 0 1 force @a +particle witch ^-0.329 ^0.433 ^0.273 0 0 0 0 1 force @a +particle witch ^-0.347 ^0.453 ^0.254 0 0 0 0 1 force @a +particle witch ^-0.364 ^0.473 ^0.234 0 0 0 0 1 force @a +particle witch ^-0.379 ^0.493 ^0.213 0 0 0 0 1 force @a +particle witch ^-0.394 ^0.513 ^0.191 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.64 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f3.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f3.mcfunction new file mode 100644 index 0000000..86ce4e3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f3.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.002 ^0.720 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.003 ^0.740 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.003 ^0.760 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.004 ^0.780 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.004 ^0.800 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.004 ^0.820 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.005 ^0.840 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.005 ^0.860 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.006 ^0.880 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.006 ^0.900 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.007 ^0.920 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.007 ^0.940 ^0.002 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.12 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f30.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f30.mcfunction new file mode 100644 index 0000000..9a22376 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f30.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.407 ^0.533 ^0.168 0 0 0 0 1 force @a +particle witch ^-0.418 ^0.553 ^0.144 0 0 0 0 1 force @a +particle witch ^-0.428 ^0.573 ^0.119 0 0 0 0 1 force @a +particle witch ^-0.437 ^0.593 ^0.094 0 0 0 0 1 force @a +particle witch ^-0.444 ^0.613 ^0.068 0 0 0 0 1 force @a +particle witch ^-0.450 ^0.633 ^0.041 0 0 0 0 1 force @a +particle witch ^-0.454 ^0.653 ^0.014 0 0 0 0 1 force @a +particle witch ^-0.457 ^0.673 ^-0.013 0 0 0 0 1 force @a +particle witch ^-0.458 ^0.693 ^-0.041 0 0 0 0 1 force @a +particle witch ^-0.457 ^0.713 ^-0.069 0 0 0 0 1 force @a +particle witch ^-0.454 ^0.733 ^-0.096 0 0 0 0 1 force @a +particle witch ^-0.450 ^0.753 ^-0.124 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.66 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f31.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f31.mcfunction new file mode 100644 index 0000000..fdd7b74 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f31.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.444 ^0.773 ^-0.152 0 0 0 0 1 force @a +particle witch ^-0.437 ^0.793 ^-0.179 0 0 0 0 1 force @a +particle witch ^-0.428 ^0.813 ^-0.206 0 0 0 0 1 force @a +particle witch ^-0.417 ^0.833 ^-0.232 0 0 0 0 1 force @a +particle witch ^-0.404 ^0.853 ^-0.258 0 0 0 0 1 force @a +particle witch ^-0.390 ^0.873 ^-0.284 0 0 0 0 1 force @a +particle witch ^-0.374 ^0.893 ^-0.308 0 0 0 0 1 force @a +particle witch ^-0.357 ^0.913 ^-0.332 0 0 0 0 1 force @a +particle witch ^-0.338 ^0.933 ^-0.355 0 0 0 0 1 force @a +particle witch ^-0.318 ^0.953 ^-0.376 0 0 0 0 1 force @a +particle witch ^-0.296 ^0.973 ^-0.397 0 0 0 0 1 force @a +particle witch ^-0.274 ^0.993 ^-0.416 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.68 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f32.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f32.mcfunction new file mode 100644 index 0000000..a93e6ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f32.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.249 ^1.013 ^-0.434 0 0 0 0 1 force @a +particle witch ^-0.224 ^1.033 ^-0.450 0 0 0 0 1 force @a +particle witch ^-0.198 ^1.053 ^-0.465 0 0 0 0 1 force @a +particle witch ^-0.170 ^1.073 ^-0.479 0 0 0 0 1 force @a +particle witch ^-0.142 ^1.093 ^-0.491 0 0 0 0 1 force @a +particle witch ^-0.113 ^1.113 ^-0.501 0 0 0 0 1 force @a +particle witch ^-0.083 ^1.133 ^-0.509 0 0 0 0 1 force @a +particle witch ^-0.053 ^1.153 ^-0.516 0 0 0 0 1 force @a +particle witch ^-0.022 ^1.173 ^-0.521 0 0 0 0 1 force @a +particle witch ^0.009 ^1.193 ^-0.524 0 0 0 0 1 force @a +particle witch ^0.041 ^1.213 ^-0.525 0 0 0 0 1 force @a +particle witch ^0.073 ^1.233 ^-0.524 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.70 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f33.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f33.mcfunction new file mode 100644 index 0000000..a36ac8c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f33.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.105 ^1.253 ^-0.522 0 0 0 0 1 force @a +particle witch ^0.136 ^1.273 ^-0.517 0 0 0 0 1 force @a +particle witch ^0.168 ^1.293 ^-0.511 0 0 0 0 1 force @a +particle witch ^0.199 ^1.313 ^-0.502 0 0 0 0 1 force @a +particle witch ^0.230 ^1.333 ^-0.492 0 0 0 0 1 force @a +particle witch ^0.261 ^1.353 ^-0.479 0 0 0 0 1 force @a +particle witch ^0.290 ^1.373 ^-0.465 0 0 0 0 1 force @a +particle witch ^0.319 ^1.393 ^-0.449 0 0 0 0 1 force @a +particle witch ^0.347 ^1.413 ^-0.431 0 0 0 0 1 force @a +particle witch ^0.374 ^1.433 ^-0.412 0 0 0 0 1 force @a +particle witch ^0.400 ^1.453 ^-0.390 0 0 0 0 1 force @a +particle witch ^0.425 ^1.473 ^-0.368 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.72 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f34.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f34.mcfunction new file mode 100644 index 0000000..b6c8150 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f34.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.449 ^1.493 ^-0.343 0 0 0 0 1 force @a +particle witch ^0.471 ^1.513 ^-0.317 0 0 0 0 1 force @a +particle witch ^0.491 ^1.533 ^-0.290 0 0 0 0 1 force @a +particle witch ^0.510 ^1.553 ^-0.261 0 0 0 0 1 force @a +particle witch ^0.528 ^1.573 ^-0.231 0 0 0 0 1 force @a +particle witch ^0.543 ^1.593 ^-0.200 0 0 0 0 1 force @a +particle witch ^0.557 ^1.613 ^-0.168 0 0 0 0 1 force @a +particle witch ^0.569 ^1.633 ^-0.135 0 0 0 0 1 force @a +particle witch ^0.578 ^1.653 ^-0.101 0 0 0 0 1 force @a +particle witch ^0.586 ^1.673 ^-0.066 0 0 0 0 1 force @a +particle witch ^0.592 ^1.693 ^-0.031 0 0 0 0 1 force @a +particle witch ^0.596 ^1.713 ^0.004 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.74 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f35.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f35.mcfunction new file mode 100644 index 0000000..98b92dc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f35.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.597 ^1.733 ^0.040 0 0 0 0 1 force @a +particle witch ^0.597 ^1.753 ^0.076 0 0 0 0 1 force @a +particle witch ^0.594 ^1.773 ^0.112 0 0 0 0 1 force @a +particle witch ^0.589 ^1.793 ^0.149 0 0 0 0 1 force @a +particle witch ^0.581 ^1.813 ^0.185 0 0 0 0 1 force @a +particle witch ^0.572 ^1.833 ^0.220 0 0 0 0 1 force @a +particle witch ^0.560 ^1.853 ^0.255 0 0 0 0 1 force @a +particle witch ^0.547 ^1.873 ^0.290 0 0 0 0 1 force @a +particle witch ^0.531 ^1.893 ^0.323 0 0 0 0 1 force @a +particle witch ^0.513 ^1.913 ^0.356 0 0 0 0 1 force @a +particle witch ^0.493 ^1.933 ^0.388 0 0 0 0 1 force @a +particle witch ^0.471 ^1.953 ^0.419 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.76 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f36.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f36.mcfunction new file mode 100644 index 0000000..36730a1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f36.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.447 ^1.973 ^0.449 0 0 0 0 1 force @a +particle witch ^0.421 ^1.993 ^0.477 0 0 0 0 1 force @a +particle witch ^0.394 ^2.013 ^0.504 0 0 0 0 1 force @a +particle witch ^0.364 ^2.033 ^0.529 0 0 0 0 1 force @a +particle witch ^0.334 ^2.053 ^0.552 0 0 0 0 1 force @a +particle witch ^0.301 ^2.073 ^0.574 0 0 0 0 1 force @a +particle witch ^0.268 ^2.093 ^0.593 0 0 0 0 1 force @a +particle witch ^0.233 ^2.113 ^0.611 0 0 0 0 1 force @a +particle witch ^0.196 ^2.133 ^0.627 0 0 0 0 1 force @a +particle witch ^0.159 ^2.153 ^0.640 0 0 0 0 1 force @a +particle witch ^0.121 ^2.173 ^0.652 0 0 0 0 1 force @a +particle witch ^0.082 ^2.193 ^0.661 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.78 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f37.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f37.mcfunction new file mode 100644 index 0000000..8c91f90 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f37.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.042 ^2.213 ^0.668 0 0 0 0 1 force @a +particle witch ^0.002 ^2.233 ^0.672 0 0 0 0 1 force @a +particle witch ^-0.038 ^2.253 ^0.674 0 0 0 0 1 force @a +particle witch ^-0.079 ^2.273 ^0.673 0 0 0 0 1 force @a +particle witch ^-0.120 ^2.293 ^0.670 0 0 0 0 1 force @a +particle witch ^-0.160 ^2.313 ^0.665 0 0 0 0 1 force @a +particle witch ^-0.201 ^2.333 ^0.657 0 0 0 0 1 force @a +particle witch ^-0.241 ^2.353 ^0.647 0 0 0 0 1 force @a +particle witch ^-0.280 ^2.373 ^0.634 0 0 0 0 1 force @a +particle witch ^-0.319 ^2.393 ^0.619 0 0 0 0 1 force @a +particle witch ^-0.357 ^2.413 ^0.601 0 0 0 0 1 force @a +particle witch ^-0.395 ^2.433 ^0.581 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.80 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f38.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f38.mcfunction new file mode 100644 index 0000000..42704f5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f38.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.431 ^2.453 ^0.559 0 0 0 0 1 force @a +particle witch ^-0.465 ^2.473 ^0.534 0 0 0 0 1 force @a +particle witch ^-0.499 ^2.493 ^0.508 0 0 0 0 1 force @a +particle witch ^-0.531 ^2.513 ^0.479 0 0 0 0 1 force @a +particle witch ^-0.561 ^2.533 ^0.448 0 0 0 0 1 force @a +particle witch ^-0.589 ^2.553 ^0.416 0 0 0 0 1 force @a +particle witch ^-0.616 ^2.573 ^0.381 0 0 0 0 1 force @a +particle witch ^-0.640 ^2.593 ^0.345 0 0 0 0 1 force @a +particle witch ^-0.663 ^2.613 ^0.307 0 0 0 0 1 force @a +particle witch ^-0.683 ^2.633 ^0.268 0 0 0 0 1 force @a +particle witch ^-0.701 ^2.653 ^0.228 0 0 0 0 1 force @a +particle witch ^-0.716 ^2.673 ^0.186 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.82 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f39.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f39.mcfunction new file mode 100644 index 0000000..66240ef --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f39.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.729 ^2.693 ^0.144 0 0 0 0 1 force @a +particle witch ^-0.740 ^2.713 ^0.100 0 0 0 0 1 force @a +particle witch ^-0.748 ^2.733 ^0.056 0 0 0 0 1 force @a +particle witch ^-0.753 ^2.753 ^0.011 0 0 0 0 1 force @a +particle witch ^-0.755 ^2.773 ^-0.035 0 0 0 0 1 force @a +particle witch ^-0.755 ^2.793 ^-0.080 0 0 0 0 1 force @a +particle witch ^-0.752 ^2.813 ^-0.126 0 0 0 0 1 force @a +particle witch ^-0.746 ^2.833 ^-0.171 0 0 0 0 1 force @a +particle witch ^-0.738 ^2.853 ^-0.217 0 0 0 0 1 force @a +particle witch ^-0.726 ^2.873 ^-0.262 0 0 0 0 1 force @a +particle witch ^-0.712 ^2.893 ^-0.306 0 0 0 0 1 force @a +particle witch ^-0.696 ^2.913 ^-0.350 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.84 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f4.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f4.mcfunction new file mode 100644 index 0000000..9cfe53f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f4.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.008 ^0.960 ^0.002 0 0 0 0 1 force @a +particle witch ^-0.008 ^0.980 ^0.002 0 0 0 0 1 force @a +particle witch ^-0.008 ^1.000 ^0.001 0 0 0 0 1 force @a +particle witch ^-0.009 ^1.020 ^0.001 0 0 0 0 1 force @a +particle witch ^-0.009 ^1.040 ^0.000 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.060 ^-0.000 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.080 ^-0.001 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.100 ^-0.002 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.120 ^-0.002 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.140 ^-0.003 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.160 ^-0.004 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.180 ^-0.005 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.16 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f40.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f40.mcfunction new file mode 100644 index 0000000..5add396 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f40.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.676 ^2.933 ^-0.392 0 0 0 0 1 force @a +particle witch ^-0.654 ^2.953 ^-0.434 0 0 0 0 1 force @a +particle witch ^-0.630 ^2.973 ^-0.474 0 0 0 0 1 force @a +particle witch ^-0.603 ^2.993 ^-0.513 0 0 0 0 1 force @a +particle witch ^-0.573 ^3.013 ^-0.551 0 0 0 0 1 force @a +particle witch ^-0.541 ^3.033 ^-0.587 0 0 0 0 1 force @a +particle witch ^-0.507 ^3.053 ^-0.621 0 0 0 0 1 force @a +particle witch ^-0.471 ^3.073 ^-0.653 0 0 0 0 1 force @a +particle witch ^-0.433 ^3.093 ^-0.682 0 0 0 0 1 force @a +particle witch ^-0.393 ^3.113 ^-0.710 0 0 0 0 1 force @a +particle witch ^-0.351 ^3.133 ^-0.735 0 0 0 0 1 force @a +particle witch ^-0.307 ^3.153 ^-0.758 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.86 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f41.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f41.mcfunction new file mode 100644 index 0000000..42a899a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f41.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.262 ^3.173 ^-0.778 0 0 0 0 1 force @a +particle witch ^-0.216 ^3.193 ^-0.796 0 0 0 0 1 force @a +particle witch ^-0.169 ^3.213 ^-0.811 0 0 0 0 1 force @a +particle witch ^-0.120 ^3.233 ^-0.823 0 0 0 0 1 force @a +particle witch ^-0.071 ^3.253 ^-0.832 0 0 0 0 1 force @a +particle witch ^-0.021 ^3.273 ^-0.838 0 0 0 0 1 force @a +particle witch ^0.029 ^3.293 ^-0.841 0 0 0 0 1 force @a +particle witch ^0.080 ^3.313 ^-0.841 0 0 0 0 1 force @a +particle witch ^0.131 ^3.333 ^-0.838 0 0 0 0 1 force @a +particle witch ^0.182 ^0.020 ^-0.832 0 0 0 0 1 force @a +particle witch ^0.232 ^0.040 ^-0.823 0 0 0 0 1 force @a +particle witch ^0.282 ^0.060 ^-0.811 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.88 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f42.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f42.mcfunction new file mode 100644 index 0000000..989c11e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f42.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.332 ^0.080 ^-0.796 0 0 0 0 1 force @a +particle witch ^0.380 ^0.100 ^-0.777 0 0 0 0 1 force @a +particle witch ^0.428 ^0.120 ^-0.756 0 0 0 0 1 force @a +particle witch ^0.474 ^0.140 ^-0.732 0 0 0 0 1 force @a +particle witch ^0.519 ^0.160 ^-0.705 0 0 0 0 1 force @a +particle witch ^0.563 ^0.180 ^-0.675 0 0 0 0 1 force @a +particle witch ^0.605 ^0.200 ^-0.643 0 0 0 0 1 force @a +particle witch ^0.645 ^0.220 ^-0.608 0 0 0 0 1 force @a +particle witch ^0.683 ^0.240 ^-0.570 0 0 0 0 1 force @a +particle witch ^0.718 ^0.260 ^-0.530 0 0 0 0 1 force @a +particle witch ^0.752 ^0.280 ^-0.488 0 0 0 0 1 force @a +particle witch ^0.783 ^0.300 ^-0.444 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.90 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f43.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f43.mcfunction new file mode 100644 index 0000000..4261042 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f43.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.811 ^0.320 ^-0.398 0 0 0 0 1 force @a +particle witch ^0.837 ^0.340 ^-0.350 0 0 0 0 1 force @a +particle witch ^0.860 ^0.360 ^-0.300 0 0 0 0 1 force @a +particle witch ^0.879 ^0.380 ^-0.249 0 0 0 0 1 force @a +particle witch ^0.896 ^0.400 ^-0.197 0 0 0 0 1 force @a +particle witch ^0.910 ^0.420 ^-0.143 0 0 0 0 1 force @a +particle witch ^0.920 ^0.440 ^-0.089 0 0 0 0 1 force @a +particle witch ^0.928 ^0.460 ^-0.033 0 0 0 0 1 force @a +particle witch ^0.931 ^0.480 ^0.022 0 0 0 0 1 force @a +particle witch ^0.932 ^0.500 ^0.079 0 0 0 0 1 force @a +particle witch ^0.929 ^0.520 ^0.135 0 0 0 0 1 force @a +particle witch ^0.923 ^0.540 ^0.191 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.92 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f44.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f44.mcfunction new file mode 100644 index 0000000..c2b4a0d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f44.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.913 ^0.560 ^0.247 0 0 0 0 1 force @a +particle witch ^0.900 ^0.580 ^0.302 0 0 0 0 1 force @a +particle witch ^0.884 ^0.600 ^0.357 0 0 0 0 1 force @a +particle witch ^0.864 ^0.620 ^0.411 0 0 0 0 1 force @a +particle witch ^0.841 ^0.640 ^0.464 0 0 0 0 1 force @a +particle witch ^0.815 ^0.660 ^0.515 0 0 0 0 1 force @a +particle witch ^0.785 ^0.680 ^0.565 0 0 0 0 1 force @a +particle witch ^0.753 ^0.700 ^0.614 0 0 0 0 1 force @a +particle witch ^0.717 ^0.720 ^0.660 0 0 0 0 1 force @a +particle witch ^0.679 ^0.740 ^0.705 0 0 0 0 1 force @a +particle witch ^0.638 ^0.760 ^0.747 0 0 0 0 1 force @a +particle witch ^0.594 ^0.780 ^0.787 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.94 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f45.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f45.mcfunction new file mode 100644 index 0000000..cf50ddb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f45.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.548 ^0.800 ^0.824 0 0 0 0 1 force @a +particle witch ^0.499 ^0.820 ^0.859 0 0 0 0 1 force @a +particle witch ^0.449 ^0.840 ^0.890 0 0 0 0 1 force @a +particle witch ^0.396 ^0.860 ^0.919 0 0 0 0 1 force @a +particle witch ^0.341 ^0.880 ^0.944 0 0 0 0 1 force @a +particle witch ^0.285 ^0.900 ^0.967 0 0 0 0 1 force @a +particle witch ^0.227 ^0.920 ^0.986 0 0 0 0 1 force @a +particle witch ^0.168 ^0.940 ^1.001 0 0 0 0 1 force @a +particle witch ^0.109 ^0.960 ^1.013 0 0 0 0 1 force @a +particle witch ^0.048 ^0.980 ^1.022 0 0 0 0 1 force @a +particle witch ^-0.014 ^1.000 ^1.026 0 0 0 0 1 force @a +particle witch ^-0.075 ^1.020 ^1.027 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.96 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f46.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f46.mcfunction new file mode 100644 index 0000000..ae67ab9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f46.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.137 ^1.040 ^1.025 0 0 0 0 1 force @a +particle witch ^-0.199 ^1.060 ^1.018 0 0 0 0 1 force @a +particle witch ^-0.261 ^1.080 ^1.008 0 0 0 0 1 force @a +particle witch ^-0.322 ^1.100 ^0.994 0 0 0 0 1 force @a +particle witch ^-0.383 ^1.120 ^0.977 0 0 0 0 1 force @a +particle witch ^-0.442 ^1.140 ^0.955 0 0 0 0 1 force @a +particle witch ^-0.500 ^1.160 ^0.931 0 0 0 0 1 force @a +particle witch ^-0.557 ^1.180 ^0.902 0 0 0 0 1 force @a +particle witch ^-0.612 ^1.200 ^0.870 0 0 0 0 1 force @a +particle witch ^-0.666 ^1.220 ^0.835 0 0 0 0 1 force @a +particle witch ^-0.717 ^1.240 ^0.796 0 0 0 0 1 force @a +particle witch ^-0.767 ^1.260 ^0.755 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.98 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f47.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f47.mcfunction new file mode 100644 index 0000000..4c90ea0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f47.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.813 ^1.280 ^0.710 0 0 0 0 1 force @a +particle witch ^-0.857 ^1.300 ^0.662 0 0 0 0 1 force @a +particle witch ^-0.899 ^1.320 ^0.612 0 0 0 0 1 force @a +particle witch ^-0.937 ^1.340 ^0.559 0 0 0 0 1 force @a +particle witch ^-0.972 ^1.360 ^0.503 0 0 0 0 1 force @a +particle witch ^-1.004 ^1.380 ^0.445 0 0 0 0 1 force @a +particle witch ^-1.033 ^1.400 ^0.386 0 0 0 0 1 force @a +particle witch ^-1.058 ^1.420 ^0.324 0 0 0 0 1 force @a +particle witch ^-1.079 ^1.440 ^0.261 0 0 0 0 1 force @a +particle witch ^-1.097 ^1.460 ^0.197 0 0 0 0 1 force @a +particle witch ^-1.110 ^1.480 ^0.131 0 0 0 0 1 force @a +particle witch ^-1.120 ^1.500 ^0.064 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f48.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f48.mcfunction new file mode 100644 index 0000000..5d139b6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f48.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.126 ^1.520 ^-0.003 0 0 0 0 1 force @a +particle witch ^-1.128 ^1.540 ^-0.071 0 0 0 0 1 force @a +particle witch ^-1.125 ^1.560 ^-0.139 0 0 0 0 1 force @a +particle witch ^-1.119 ^1.580 ^-0.206 0 0 0 0 1 force @a +particle witch ^-1.108 ^1.600 ^-0.274 0 0 0 0 1 force @a +particle witch ^-1.093 ^1.620 ^-0.341 0 0 0 0 1 force @a +particle witch ^-1.075 ^1.640 ^-0.408 0 0 0 0 1 force @a +particle witch ^-1.052 ^1.660 ^-0.473 0 0 0 0 1 force @a +particle witch ^-1.025 ^1.680 ^-0.537 0 0 0 0 1 force @a +particle witch ^-0.995 ^1.700 ^-0.600 0 0 0 0 1 force @a +particle witch ^-0.960 ^1.720 ^-0.660 0 0 0 0 1 force @a +particle witch ^-0.922 ^1.740 ^-0.719 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.02 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f49.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f49.mcfunction new file mode 100644 index 0000000..fec3e8a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f49.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.880 ^1.760 ^-0.776 0 0 0 0 1 force @a +particle witch ^-0.835 ^1.780 ^-0.830 0 0 0 0 1 force @a +particle witch ^-0.786 ^1.800 ^-0.882 0 0 0 0 1 force @a +particle witch ^-0.734 ^1.820 ^-0.930 0 0 0 0 1 force @a +particle witch ^-0.680 ^1.840 ^-0.976 0 0 0 0 1 force @a +particle witch ^-0.622 ^1.860 ^-1.018 0 0 0 0 1 force @a +particle witch ^-0.562 ^1.880 ^-1.057 0 0 0 0 1 force @a +particle witch ^-0.499 ^1.900 ^-1.093 0 0 0 0 1 force @a +particle witch ^-0.434 ^1.920 ^-1.125 0 0 0 0 1 force @a +particle witch ^-0.367 ^1.940 ^-1.152 0 0 0 0 1 force @a +particle witch ^-0.298 ^1.960 ^-1.176 0 0 0 0 1 force @a +particle witch ^-0.228 ^1.980 ^-1.196 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.04 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f5.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f5.mcfunction new file mode 100644 index 0000000..b8c4e65 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f5.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.011 ^1.200 ^-0.005 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.220 ^-0.006 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.240 ^-0.007 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.260 ^-0.008 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.280 ^-0.009 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.300 ^-0.010 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.320 ^-0.011 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.340 ^-0.012 0 0 0 0 1 force @a +particle witch ^-0.009 ^1.360 ^-0.013 0 0 0 0 1 force @a +particle witch ^-0.009 ^1.380 ^-0.014 0 0 0 0 1 force @a +particle witch ^-0.008 ^1.400 ^-0.014 0 0 0 0 1 force @a +particle witch ^-0.007 ^1.420 ^-0.015 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.18 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f50.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f50.mcfunction new file mode 100644 index 0000000..7a7dab3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f50.mcfunction @@ -0,0 +1,17 @@ + +particle witch ^-0.156 ^2.000 ^-1.212 0 0 0 0 1 force @a +particle witch ^-0.084 ^2.020 ^-1.223 0 0 0 0 1 force @a +particle witch ^-0.010 ^2.040 ^-1.230 0 0 0 0 1 force @a +particle witch ^0.064 ^2.060 ^-1.232 0 0 0 0 1 force @a +particle witch ^0.138 ^2.080 ^-1.230 0 0 0 0 1 force @a +particle witch ^0.212 ^2.100 ^-1.224 0 0 0 0 1 force @a +particle witch ^0.286 ^2.120 ^-1.213 0 0 0 0 1 force @a +particle witch ^0.360 ^2.140 ^-1.197 0 0 0 0 1 force @a +particle witch ^0.432 ^2.160 ^-1.178 0 0 0 0 1 force @a +particle witch ^0.504 ^2.180 ^-1.153 0 0 0 0 1 force @a +particle witch ^0.574 ^2.200 ^-1.125 0 0 0 0 1 force @a +particle witch ^0.642 ^2.220 ^-1.092 0 0 0 0 1 force @a + +particle minecraft:portal ~ ~0.5 ~ 0 0 0 10 10000 force + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.06 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f51.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f51.mcfunction new file mode 100644 index 0000000..c47f8a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f51.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.709 ^2.240 ^-1.055 0 0 0 0 1 force @a +particle witch ^0.773 ^2.260 ^-1.014 0 0 0 0 1 force @a +particle witch ^0.835 ^2.280 ^-0.969 0 0 0 0 1 force @a +particle witch ^0.895 ^2.300 ^-0.920 0 0 0 0 1 force @a +particle witch ^0.952 ^2.320 ^-0.867 0 0 0 0 1 force @a +particle witch ^1.005 ^2.340 ^-0.811 0 0 0 0 1 force @a +particle witch ^1.055 ^2.360 ^-0.752 0 0 0 0 1 force @a +particle witch ^1.102 ^2.380 ^-0.690 0 0 0 0 1 force @a +particle witch ^1.145 ^2.400 ^-0.624 0 0 0 0 1 force @a +particle witch ^1.184 ^2.420 ^-0.556 0 0 0 0 1 force @a +particle witch ^1.220 ^2.440 ^-0.486 0 0 0 0 1 force @a +particle witch ^1.251 ^2.460 ^-0.413 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.08 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f52.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f52.mcfunction new file mode 100644 index 0000000..de6510c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f52.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.277 ^2.480 ^-0.339 0 0 0 0 1 force @a +particle witch ^1.299 ^2.500 ^-0.262 0 0 0 0 1 force @a +particle witch ^1.317 ^2.520 ^-0.184 0 0 0 0 1 force @a +particle witch ^1.330 ^2.540 ^-0.105 0 0 0 0 1 force @a +particle witch ^1.338 ^2.560 ^-0.026 0 0 0 0 1 force @a +particle witch ^1.341 ^2.580 ^0.055 0 0 0 0 1 force @a +particle witch ^1.340 ^2.600 ^0.136 0 0 0 0 1 force @a +particle witch ^1.334 ^2.620 ^0.216 0 0 0 0 1 force @a +particle witch ^1.322 ^2.640 ^0.297 0 0 0 0 1 force @a +particle witch ^1.306 ^2.660 ^0.377 0 0 0 0 1 force @a +particle witch ^1.285 ^2.680 ^0.456 0 0 0 0 1 force @a +particle witch ^1.260 ^2.700 ^0.534 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.1 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f53.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f53.mcfunction new file mode 100644 index 0000000..c6eb8e9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f53.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.229 ^2.720 ^0.610 0 0 0 0 1 force @a +particle witch ^1.194 ^2.740 ^0.685 0 0 0 0 1 force @a +particle witch ^1.155 ^2.760 ^0.758 0 0 0 0 1 force @a +particle witch ^1.111 ^2.780 ^0.828 0 0 0 0 1 force @a +particle witch ^1.062 ^2.800 ^0.896 0 0 0 0 1 force @a +particle witch ^1.010 ^2.820 ^0.961 0 0 0 0 1 force @a +particle witch ^0.953 ^2.840 ^1.023 0 0 0 0 1 force @a +particle witch ^0.893 ^2.860 ^1.082 0 0 0 0 1 force @a +particle witch ^0.829 ^2.880 ^1.137 0 0 0 0 1 force @a +particle witch ^0.762 ^2.900 ^1.189 0 0 0 0 1 force @a +particle witch ^0.691 ^2.920 ^1.236 0 0 0 0 1 force @a +particle witch ^0.618 ^2.940 ^1.279 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.12 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f54.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f54.mcfunction new file mode 100644 index 0000000..5bd824f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f54.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.542 ^2.960 ^1.318 0 0 0 0 1 force @a +particle witch ^0.463 ^2.980 ^1.352 0 0 0 0 1 force @a +particle witch ^0.382 ^3.000 ^1.382 0 0 0 0 1 force @a +particle witch ^0.300 ^3.020 ^1.407 0 0 0 0 1 force @a +particle witch ^0.215 ^3.040 ^1.426 0 0 0 0 1 force @a +particle witch ^0.130 ^3.060 ^1.441 0 0 0 0 1 force @a +particle witch ^0.043 ^3.080 ^1.451 0 0 0 0 1 force @a +particle witch ^-0.044 ^3.100 ^1.455 0 0 0 0 1 force @a +particle witch ^-0.131 ^3.120 ^1.454 0 0 0 0 1 force @a +particle witch ^-0.219 ^3.140 ^1.448 0 0 0 0 1 force @a +particle witch ^-0.306 ^3.160 ^1.437 0 0 0 0 1 force @a +particle witch ^-0.393 ^3.180 ^1.420 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.14 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f55.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f55.mcfunction new file mode 100644 index 0000000..4876f03 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f55.mcfunction @@ -0,0 +1,20 @@ + +particle witch ^-0.479 ^3.200 ^1.398 0 0 0 0 1 force @a +particle witch ^-0.564 ^3.220 ^1.371 0 0 0 0 1 force @a +particle witch ^-0.647 ^3.240 ^1.339 0 0 0 0 1 force @a +particle witch ^-0.728 ^3.260 ^1.302 0 0 0 0 1 force @a +particle witch ^-0.807 ^3.280 ^1.259 0 0 0 0 1 force @a +particle witch ^-0.884 ^3.300 ^1.212 0 0 0 0 1 force @a +particle witch ^-0.958 ^3.320 ^1.161 0 0 0 0 1 force @a +particle witch ^-1.029 ^0.007 ^1.104 0 0 0 0 1 force @a +particle witch ^-1.097 ^0.027 ^1.044 0 0 0 0 1 force @a +particle witch ^-1.161 ^0.047 ^0.979 0 0 0 0 1 force @a +particle witch ^-1.221 ^0.067 ^0.911 0 0 0 0 1 force @a +particle witch ^-1.277 ^0.087 ^0.838 0 0 0 0 1 force @a + +function infinity_cave:mechanics/altar/sphere + +particle minecraft:end_rod ~ ~ ~ 0 0.5 0.5 1 100 force +playsound minecraft:entity.wither.shoot master @a[distance=..20] ~ ~ ~ 1 1.5 1 + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.16 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f56.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f56.mcfunction new file mode 100644 index 0000000..af098c0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f56.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.329 ^0.107 ^0.762 0 0 0 0 1 force @a +particle witch ^-1.377 ^0.127 ^0.683 0 0 0 0 1 force @a +particle witch ^-1.419 ^0.147 ^0.601 0 0 0 0 1 force @a +particle witch ^-1.457 ^0.167 ^0.517 0 0 0 0 1 force @a +particle witch ^-1.490 ^0.187 ^0.430 0 0 0 0 1 force @a +particle witch ^-1.518 ^0.207 ^0.340 0 0 0 0 1 force @a +particle witch ^-1.540 ^0.227 ^0.250 0 0 0 0 1 force @a +particle witch ^-1.557 ^0.247 ^0.157 0 0 0 0 1 force @a +particle witch ^-1.568 ^0.267 ^0.064 0 0 0 0 1 force @a +particle witch ^-1.573 ^0.287 ^-0.030 0 0 0 0 1 force @a +particle witch ^-1.573 ^0.307 ^-0.125 0 0 0 0 1 force @a +particle witch ^-1.568 ^0.327 ^-0.220 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.18 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f57.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f57.mcfunction new file mode 100644 index 0000000..d35dd64 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f57.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.556 ^0.347 ^-0.314 0 0 0 0 1 force @a +particle witch ^-1.539 ^0.367 ^-0.408 0 0 0 0 1 force @a +particle witch ^-1.516 ^0.387 ^-0.501 0 0 0 0 1 force @a +particle witch ^-1.488 ^0.407 ^-0.593 0 0 0 0 1 force @a +particle witch ^-1.454 ^0.427 ^-0.683 0 0 0 0 1 force @a +particle witch ^-1.414 ^0.447 ^-0.771 0 0 0 0 1 force @a +particle witch ^-1.369 ^0.467 ^-0.857 0 0 0 0 1 force @a +particle witch ^-1.319 ^0.487 ^-0.940 0 0 0 0 1 force @a +particle witch ^-1.264 ^0.507 ^-1.021 0 0 0 0 1 force @a +particle witch ^-1.204 ^0.527 ^-1.098 0 0 0 0 1 force @a +particle witch ^-1.139 ^0.547 ^-1.172 0 0 0 0 1 force @a +particle witch ^-1.070 ^0.567 ^-1.241 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.20 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f58.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f58.mcfunction new file mode 100644 index 0000000..c5ecfd5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f58.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.997 ^0.587 ^-1.307 0 0 0 0 1 force @a +particle witch ^-0.919 ^0.607 ^-1.368 0 0 0 0 1 force @a +particle witch ^-0.838 ^0.627 ^-1.425 0 0 0 0 1 force @a +particle witch ^-0.753 ^0.647 ^-1.477 0 0 0 0 1 force @a +particle witch ^-0.665 ^0.667 ^-1.524 0 0 0 0 1 force @a +particle witch ^-0.574 ^0.687 ^-1.565 0 0 0 0 1 force @a +particle witch ^-0.481 ^0.707 ^-1.602 0 0 0 0 1 force @a +particle witch ^-0.385 ^0.727 ^-1.632 0 0 0 0 1 force @a +particle witch ^-0.287 ^0.747 ^-1.657 0 0 0 0 1 force @a +particle witch ^-0.188 ^0.767 ^-1.676 0 0 0 0 1 force @a +particle witch ^-0.087 ^0.787 ^-1.689 0 0 0 0 1 force @a +particle witch ^0.014 ^0.807 ^-1.696 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.22 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f59.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f59.mcfunction new file mode 100644 index 0000000..45c7f49 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f59.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.116 ^0.827 ^-1.697 0 0 0 0 1 force @a +particle witch ^0.219 ^0.847 ^-1.692 0 0 0 0 1 force @a +particle witch ^0.321 ^0.867 ^-1.680 0 0 0 0 1 force @a +particle witch ^0.422 ^0.887 ^-1.663 0 0 0 0 1 force @a +particle witch ^0.522 ^0.907 ^-1.639 0 0 0 0 1 force @a +particle witch ^0.621 ^0.927 ^-1.609 0 0 0 0 1 force @a +particle witch ^0.719 ^0.947 ^-1.573 0 0 0 0 1 force @a +particle witch ^0.814 ^0.967 ^-1.532 0 0 0 0 1 force @a +particle witch ^0.907 ^0.987 ^-1.484 0 0 0 0 1 force @a +particle witch ^0.997 ^1.007 ^-1.431 0 0 0 0 1 force @a +particle witch ^1.084 ^1.027 ^-1.373 0 0 0 0 1 force @a +particle witch ^1.168 ^1.047 ^-1.309 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.24 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f6.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f6.mcfunction new file mode 100644 index 0000000..cb16ff1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f6.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.007 ^1.440 ^-0.016 0 0 0 0 1 force @a +particle witch ^-0.006 ^1.460 ^-0.017 0 0 0 0 1 force @a +particle witch ^-0.005 ^1.480 ^-0.018 0 0 0 0 1 force @a +particle witch ^-0.004 ^1.500 ^-0.019 0 0 0 0 1 force @a +particle witch ^-0.003 ^1.520 ^-0.019 0 0 0 0 1 force @a +particle witch ^-0.002 ^1.540 ^-0.020 0 0 0 0 1 force @a +particle witch ^-0.001 ^1.560 ^-0.021 0 0 0 0 1 force @a +particle witch ^0.001 ^1.580 ^-0.021 0 0 0 0 1 force @a +particle witch ^0.002 ^1.600 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.003 ^1.620 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.005 ^1.640 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.006 ^1.660 ^-0.023 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f60.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f60.mcfunction new file mode 100644 index 0000000..5ab3978 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f60.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.248 ^1.067 ^-1.240 0 0 0 0 1 force @a +particle witch ^1.323 ^1.087 ^-1.166 0 0 0 0 1 force @a +particle witch ^1.395 ^1.107 ^-1.088 0 0 0 0 1 force @a +particle witch ^1.462 ^1.127 ^-1.005 0 0 0 0 1 force @a +particle witch ^1.523 ^1.147 ^-0.918 0 0 0 0 1 force @a +particle witch ^1.580 ^1.167 ^-0.827 0 0 0 0 1 force @a +particle witch ^1.631 ^1.187 ^-0.733 0 0 0 0 1 force @a +particle witch ^1.677 ^1.207 ^-0.636 0 0 0 0 1 force @a +particle witch ^1.717 ^1.227 ^-0.535 0 0 0 0 1 force @a +particle witch ^1.751 ^1.247 ^-0.433 0 0 0 0 1 force @a +particle witch ^1.778 ^1.267 ^-0.328 0 0 0 0 1 force @a +particle witch ^1.800 ^1.287 ^-0.221 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.26 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f61.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f61.mcfunction new file mode 100644 index 0000000..d946414 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f61.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.815 ^1.307 ^-0.113 0 0 0 0 1 force @a +particle witch ^1.823 ^1.327 ^-0.004 0 0 0 0 1 force @a +particle witch ^1.825 ^1.347 ^0.105 0 0 0 0 1 force @a +particle witch ^1.820 ^1.367 ^0.215 0 0 0 0 1 force @a +particle witch ^1.809 ^1.387 ^0.325 0 0 0 0 1 force @a +particle witch ^1.791 ^1.407 ^0.434 0 0 0 0 1 force @a +particle witch ^1.767 ^1.427 ^0.542 0 0 0 0 1 force @a +particle witch ^1.736 ^1.447 ^0.649 0 0 0 0 1 force @a +particle witch ^1.698 ^1.467 ^0.754 0 0 0 0 1 force @a +particle witch ^1.655 ^1.487 ^0.857 0 0 0 0 1 force @a +particle witch ^1.605 ^1.507 ^0.957 0 0 0 0 1 force @a +particle witch ^1.548 ^1.527 ^1.054 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.28 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f62.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f62.mcfunction new file mode 100644 index 0000000..1faab7d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f62.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.486 ^1.547 ^1.148 0 0 0 0 1 force @a +particle witch ^1.419 ^1.567 ^1.239 0 0 0 0 1 force @a +particle witch ^1.346 ^1.587 ^1.325 0 0 0 0 1 force @a +particle witch ^1.267 ^1.607 ^1.407 0 0 0 0 1 force @a +particle witch ^1.184 ^1.627 ^1.484 0 0 0 0 1 force @a +particle witch ^1.095 ^1.647 ^1.557 0 0 0 0 1 force @a +particle witch ^1.003 ^1.667 ^1.624 0 0 0 0 1 force @a +particle witch ^0.906 ^1.687 ^1.686 0 0 0 0 1 force @a +particle witch ^0.805 ^1.707 ^1.742 0 0 0 0 1 force @a +particle witch ^0.701 ^1.727 ^1.792 0 0 0 0 1 force @a +particle witch ^0.594 ^1.747 ^1.835 0 0 0 0 1 force @a +particle witch ^0.484 ^1.767 ^1.873 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.3 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f63.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f63.mcfunction new file mode 100644 index 0000000..9f6cdfa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f63.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.372 ^1.787 ^1.903 0 0 0 0 1 force @a +particle witch ^0.258 ^1.807 ^1.927 0 0 0 0 1 force @a +particle witch ^0.142 ^1.827 ^1.944 0 0 0 0 1 force @a +particle witch ^0.026 ^1.847 ^1.955 0 0 0 0 1 force @a +particle witch ^-0.092 ^1.867 ^1.958 0 0 0 0 1 force @a +particle witch ^-0.210 ^1.887 ^1.954 0 0 0 0 1 force @a +particle witch ^-0.327 ^1.907 ^1.943 0 0 0 0 1 force @a +particle witch ^-0.444 ^1.927 ^1.925 0 0 0 0 1 force @a +particle witch ^-0.560 ^1.947 ^1.900 0 0 0 0 1 force @a +particle witch ^-0.675 ^1.967 ^1.868 0 0 0 0 1 force @a +particle witch ^-0.788 ^1.987 ^1.828 0 0 0 0 1 force @a +particle witch ^-0.899 ^2.007 ^1.783 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.32 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f64.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f64.mcfunction new file mode 100644 index 0000000..52d122a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f64.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.006 ^2.027 ^1.730 0 0 0 0 1 force @a +particle witch ^-1.111 ^2.047 ^1.671 0 0 0 0 1 force @a +particle witch ^-1.213 ^2.067 ^1.605 0 0 0 0 1 force @a +particle witch ^-1.310 ^2.087 ^1.534 0 0 0 0 1 force @a +particle witch ^-1.403 ^2.107 ^1.456 0 0 0 0 1 force @a +particle witch ^-1.492 ^2.127 ^1.373 0 0 0 0 1 force @a +particle witch ^-1.576 ^2.147 ^1.284 0 0 0 0 1 force @a +particle witch ^-1.654 ^2.167 ^1.191 0 0 0 0 1 force @a +particle witch ^-1.727 ^2.187 ^1.092 0 0 0 0 1 force @a +particle witch ^-1.794 ^2.207 ^0.989 0 0 0 0 1 force @a +particle witch ^-1.855 ^2.227 ^0.882 0 0 0 0 1 force @a +particle witch ^-1.909 ^2.247 ^0.771 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.34 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f65.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f65.mcfunction new file mode 100644 index 0000000..26693b3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f65.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.957 ^2.267 ^0.657 0 0 0 0 1 force @a +particle witch ^-1.998 ^2.287 ^0.540 0 0 0 0 1 force @a +particle witch ^-2.032 ^2.307 ^0.420 0 0 0 0 1 force @a +particle witch ^-2.059 ^2.327 ^0.298 0 0 0 0 1 force @a +particle witch ^-2.078 ^2.347 ^0.175 0 0 0 0 1 force @a +particle witch ^-2.090 ^2.367 ^0.050 0 0 0 0 1 force @a +particle witch ^-2.095 ^2.387 ^-0.076 0 0 0 0 1 force @a +particle witch ^-2.092 ^2.407 ^-0.202 0 0 0 0 1 force @a +particle witch ^-2.081 ^2.427 ^-0.328 0 0 0 0 1 force @a +particle witch ^-2.063 ^2.447 ^-0.453 0 0 0 0 1 force @a +particle witch ^-2.038 ^2.467 ^-0.577 0 0 0 0 1 force @a +particle witch ^-2.004 ^2.487 ^-0.700 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.36 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f66.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f66.mcfunction new file mode 100644 index 0000000..2b37341 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f66.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.964 ^2.507 ^-0.821 0 0 0 0 1 force @a +particle witch ^-1.916 ^2.527 ^-0.940 0 0 0 0 1 force @a +particle witch ^-1.861 ^2.547 ^-1.056 0 0 0 0 1 force @a +particle witch ^-1.798 ^2.567 ^-1.168 0 0 0 0 1 force @a +particle witch ^-1.730 ^2.587 ^-1.277 0 0 0 0 1 force @a +particle witch ^-1.654 ^2.607 ^-1.382 0 0 0 0 1 force @a +particle witch ^-1.572 ^2.627 ^-1.483 0 0 0 0 1 force @a +particle witch ^-1.484 ^2.647 ^-1.578 0 0 0 0 1 force @a +particle witch ^-1.390 ^2.667 ^-1.668 0 0 0 0 1 force @a +particle witch ^-1.291 ^2.687 ^-1.753 0 0 0 0 1 force @a +particle witch ^-1.186 ^2.707 ^-1.832 0 0 0 0 1 force @a +particle witch ^-1.077 ^2.727 ^-1.905 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.38 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f67.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f67.mcfunction new file mode 100644 index 0000000..e6021bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f67.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.963 ^2.747 ^-1.971 0 0 0 0 1 force @a +particle witch ^-0.846 ^2.767 ^-2.030 0 0 0 0 1 force @a +particle witch ^-0.724 ^2.787 ^-2.082 0 0 0 0 1 force @a +particle witch ^-0.599 ^2.807 ^-2.127 0 0 0 0 1 force @a +particle witch ^-0.472 ^2.827 ^-2.164 0 0 0 0 1 force @a +particle witch ^-0.342 ^2.847 ^-2.194 0 0 0 0 1 force @a +particle witch ^-0.210 ^2.867 ^-2.216 0 0 0 0 1 force @a +particle witch ^-0.077 ^2.887 ^-2.230 0 0 0 0 1 force @a +particle witch ^0.057 ^2.907 ^-2.237 0 0 0 0 1 force @a +particle witch ^0.191 ^2.927 ^-2.235 0 0 0 0 1 force @a +particle witch ^0.326 ^2.947 ^-2.225 0 0 0 0 1 force @a +particle witch ^0.460 ^2.967 ^-2.207 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.4 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f68.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f68.mcfunction new file mode 100644 index 0000000..f70fe7a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f68.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.592 ^2.987 ^-2.180 0 0 0 0 1 force @a +particle witch ^0.724 ^3.007 ^-2.146 0 0 0 0 1 force @a +particle witch ^0.853 ^3.027 ^-2.104 0 0 0 0 1 force @a +particle witch ^0.980 ^3.047 ^-2.054 0 0 0 0 1 force @a +particle witch ^1.104 ^3.067 ^-1.996 0 0 0 0 1 force @a +particle witch ^1.225 ^3.087 ^-1.931 0 0 0 0 1 force @a +particle witch ^1.342 ^3.107 ^-1.859 0 0 0 0 1 force @a +particle witch ^1.455 ^3.127 ^-1.779 0 0 0 0 1 force @a +particle witch ^1.563 ^3.147 ^-1.693 0 0 0 0 1 force @a +particle witch ^1.665 ^3.167 ^-1.600 0 0 0 0 1 force @a +particle witch ^1.763 ^3.187 ^-1.501 0 0 0 0 1 force @a +particle witch ^1.854 ^3.207 ^-1.396 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.42 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f69.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f69.mcfunction new file mode 100644 index 0000000..e367fc4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f69.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.939 ^3.227 ^-1.286 0 0 0 0 1 force @a +particle witch ^2.017 ^3.247 ^-1.170 0 0 0 0 1 force @a +particle witch ^2.089 ^3.267 ^-1.049 0 0 0 0 1 force @a +particle witch ^2.153 ^3.287 ^-0.924 0 0 0 0 1 force @a +particle witch ^2.210 ^3.307 ^-0.795 0 0 0 0 1 force @a +particle witch ^2.259 ^3.327 ^-0.663 0 0 0 0 1 force @a +particle witch ^2.358 ^0.013 ^0.094 0 0 0 0 1 force @a +particle witch ^2.354 ^0.033 ^0.236 0 0 0 0 1 force @a +particle witch ^2.341 ^0.053 ^0.378 0 0 0 0 1 force @a +particle witch ^2.320 ^0.073 ^0.519 0 0 0 0 1 force @a +particle witch ^2.290 ^0.093 ^0.659 0 0 0 0 1 force @a +particle witch ^2.252 ^0.113 ^0.797 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.44 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f7.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f7.mcfunction new file mode 100644 index 0000000..cbe1c2a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f7.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.008 ^1.680 ^-0.023 0 0 0 0 1 force @a +particle witch ^0.009 ^1.700 ^-0.023 0 0 0 0 1 force @a +particle witch ^0.011 ^1.720 ^-0.023 0 0 0 0 1 force @a +particle witch ^0.012 ^1.740 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.014 ^1.760 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.016 ^1.780 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.017 ^1.800 ^-0.021 0 0 0 0 1 force @a +particle witch ^0.019 ^1.820 ^-0.021 0 0 0 0 1 force @a +particle witch ^0.021 ^1.840 ^-0.020 0 0 0 0 1 force @a +particle witch ^0.022 ^1.860 ^-0.019 0 0 0 0 1 force @a +particle witch ^0.024 ^1.880 ^-0.018 0 0 0 0 1 force @a +particle witch ^0.026 ^1.900 ^-0.017 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.22 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f70.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f70.mcfunction new file mode 100644 index 0000000..6376259 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f70.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^2.205 ^0.133 ^0.932 0 0 0 0 1 force @a +particle witch ^2.151 ^0.153 ^1.065 0 0 0 0 1 force @a +particle witch ^2.088 ^0.173 ^1.195 0 0 0 0 1 force @a +particle witch ^2.017 ^0.193 ^1.322 0 0 0 0 1 force @a +particle witch ^1.939 ^0.213 ^1.444 0 0 0 0 1 force @a +particle witch ^1.853 ^0.233 ^1.561 0 0 0 0 1 force @a +particle witch ^1.760 ^0.253 ^1.673 0 0 0 0 1 force @a +particle witch ^1.661 ^0.273 ^1.780 0 0 0 0 1 force @a +particle witch ^1.555 ^0.293 ^1.881 0 0 0 0 1 force @a +particle witch ^1.443 ^0.313 ^1.975 0 0 0 0 1 force @a +particle witch ^1.325 ^0.333 ^2.063 0 0 0 0 1 force @a +particle witch ^1.201 ^0.353 ^2.144 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.46 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f71.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f71.mcfunction new file mode 100644 index 0000000..108265f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f71.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.073 ^0.373 ^2.217 0 0 0 0 1 force @a +particle witch ^0.940 ^0.393 ^2.283 0 0 0 0 1 force @a +particle witch ^0.804 ^0.413 ^2.341 0 0 0 0 1 force @a +particle witch ^0.664 ^0.433 ^2.390 0 0 0 0 1 force @a +particle witch ^0.520 ^0.453 ^2.431 0 0 0 0 1 force @a +particle witch ^0.374 ^0.473 ^2.464 0 0 0 0 1 force @a +particle witch ^0.226 ^0.493 ^2.488 0 0 0 0 1 force @a +particle witch ^0.077 ^0.513 ^2.503 0 0 0 0 1 force @a +particle witch ^-0.073 ^0.533 ^2.509 0 0 0 0 1 force @a +particle witch ^-0.224 ^0.553 ^2.505 0 0 0 0 1 force @a +particle witch ^-0.375 ^0.573 ^2.493 0 0 0 0 1 force @a +particle witch ^-0.525 ^0.593 ^2.472 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.48 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f72.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f72.mcfunction new file mode 100644 index 0000000..f5489f1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f72.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.674 ^0.613 ^2.442 0 0 0 0 1 force @a +particle witch ^-0.821 ^0.633 ^2.403 0 0 0 0 1 force @a +particle witch ^-0.966 ^0.653 ^2.354 0 0 0 0 1 force @a +particle witch ^-1.108 ^0.673 ^2.298 0 0 0 0 1 force @a +particle witch ^-1.246 ^0.693 ^2.232 0 0 0 0 1 force @a +particle witch ^-1.381 ^0.713 ^2.158 0 0 0 0 1 force @a +particle witch ^-1.511 ^0.733 ^2.077 0 0 0 0 1 force @a +particle witch ^-1.637 ^0.753 ^1.987 0 0 0 0 1 force @a +particle witch ^-1.757 ^0.773 ^1.889 0 0 0 0 1 force @a +particle witch ^-1.872 ^0.793 ^1.785 0 0 0 0 1 force @a +particle witch ^-1.980 ^0.813 ^1.673 0 0 0 0 1 force @a +particle witch ^-2.081 ^0.833 ^1.555 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.5 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f73.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f73.mcfunction new file mode 100644 index 0000000..11244a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f73.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-2.176 ^0.853 ^1.430 0 0 0 0 1 force @a +particle witch ^-2.263 ^0.873 ^1.300 0 0 0 0 1 force @a +particle witch ^-2.342 ^0.893 ^1.165 0 0 0 0 1 force @a +particle witch ^-2.413 ^0.913 ^1.025 0 0 0 0 1 force @a +particle witch ^-2.476 ^0.933 ^0.880 0 0 0 0 1 force @a +particle witch ^-2.530 ^0.953 ^0.732 0 0 0 0 1 force @a +particle witch ^-2.575 ^0.973 ^0.580 0 0 0 0 1 force @a +particle witch ^-2.611 ^0.993 ^0.426 0 0 0 0 1 force @a +particle witch ^-2.638 ^1.013 ^0.269 0 0 0 0 1 force @a +particle witch ^-2.655 ^1.033 ^0.111 0 0 0 0 1 force @a +particle witch ^-2.663 ^1.053 ^-0.049 0 0 0 0 1 force @a +particle witch ^-2.662 ^1.073 ^-0.209 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.52 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f74.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f74.mcfunction new file mode 100644 index 0000000..f2bacdf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f74.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-2.650 ^1.093 ^-0.369 0 0 0 0 1 force @a +particle witch ^-2.629 ^1.113 ^-0.529 0 0 0 0 1 force @a +particle witch ^-2.599 ^1.133 ^-0.687 0 0 0 0 1 force @a +particle witch ^-2.558 ^1.153 ^-0.843 0 0 0 0 1 force @a +particle witch ^-2.509 ^1.173 ^-0.997 0 0 0 0 1 force @a +particle witch ^-2.450 ^1.193 ^-1.149 0 0 0 0 1 force @a +particle witch ^-2.382 ^1.213 ^-1.296 0 0 0 0 1 force @a +particle witch ^-2.305 ^1.233 ^-1.440 0 0 0 0 1 force @a +particle witch ^-2.220 ^1.253 ^-1.579 0 0 0 0 1 force @a +particle witch ^-2.126 ^1.273 ^-1.713 0 0 0 0 1 force @a +particle witch ^-2.024 ^1.293 ^-1.842 0 0 0 0 1 force @a +particle witch ^-1.914 ^1.313 ^-1.964 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.54 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f75.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f75.mcfunction new file mode 100644 index 0000000..b983fbb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f75.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.797 ^1.333 ^-2.080 0 0 0 0 1 force @a +particle witch ^-1.672 ^1.353 ^-2.189 0 0 0 0 1 force @a +particle witch ^-1.541 ^1.373 ^-2.290 0 0 0 0 1 force @a +particle witch ^-1.404 ^1.393 ^-2.384 0 0 0 0 1 force @a +particle witch ^-1.262 ^1.413 ^-2.469 0 0 0 0 1 force @a +particle witch ^-1.114 ^1.433 ^-2.546 0 0 0 0 1 force @a +particle witch ^-0.961 ^1.453 ^-2.614 0 0 0 0 1 force @a +particle witch ^-0.805 ^1.473 ^-2.673 0 0 0 0 1 force @a +particle witch ^-0.644 ^1.493 ^-2.722 0 0 0 0 1 force @a +particle witch ^-0.481 ^1.513 ^-2.762 0 0 0 0 1 force @a +particle witch ^-0.315 ^1.533 ^-2.792 0 0 0 0 1 force @a +particle witch ^-0.147 ^1.553 ^-2.812 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.56 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f76.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f76.mcfunction new file mode 100644 index 0000000..ed2f205 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f76.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.021 ^1.573 ^-2.822 0 0 0 0 1 force @a +particle witch ^0.191 ^1.593 ^-2.822 0 0 0 0 1 force @a +particle witch ^0.361 ^1.613 ^-2.812 0 0 0 0 1 force @a +particle witch ^0.530 ^1.633 ^-2.791 0 0 0 0 1 force @a +particle witch ^0.698 ^1.653 ^-2.760 0 0 0 0 1 force @a +particle witch ^0.864 ^1.673 ^-2.719 0 0 0 0 1 force @a +particle witch ^1.028 ^1.693 ^-2.669 0 0 0 0 1 force @a +particle witch ^1.188 ^1.713 ^-2.608 0 0 0 0 1 force @a +particle witch ^1.346 ^1.733 ^-2.537 0 0 0 0 1 force @a +particle witch ^1.499 ^1.753 ^-2.457 0 0 0 0 1 force @a +particle witch ^1.647 ^1.773 ^-2.368 0 0 0 0 1 force @a +particle witch ^1.790 ^1.793 ^-2.270 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.58 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f77.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f77.mcfunction new file mode 100644 index 0000000..b2b4aaa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f77.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.927 ^1.813 ^-2.163 0 0 0 0 1 force @a +particle witch ^2.058 ^1.833 ^-2.048 0 0 0 0 1 force @a +particle witch ^2.181 ^1.853 ^-1.926 0 0 0 0 1 force @a +particle witch ^2.298 ^1.873 ^-1.795 0 0 0 0 1 force @a +particle witch ^2.407 ^1.893 ^-1.658 0 0 0 0 1 force @a +particle witch ^2.507 ^1.913 ^-1.514 0 0 0 0 1 force @a +particle witch ^2.599 ^1.933 ^-1.364 0 0 0 0 1 force @a +particle witch ^2.682 ^1.953 ^-1.208 0 0 0 0 1 force @a +particle witch ^2.755 ^1.973 ^-1.047 0 0 0 0 1 force @a +particle witch ^2.819 ^1.993 ^-0.882 0 0 0 0 1 force @a +particle witch ^2.873 ^2.013 ^-0.713 0 0 0 0 1 force @a +particle witch ^2.917 ^2.033 ^-0.540 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.6 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f78.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f78.mcfunction new file mode 100644 index 0000000..35a1037 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f78.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^2.950 ^2.053 ^-0.365 0 0 0 0 1 force @a +particle witch ^2.973 ^2.073 ^-0.188 0 0 0 0 1 force @a +particle witch ^2.986 ^2.093 ^-0.010 0 0 0 0 1 force @a +particle witch ^2.987 ^2.113 ^0.170 0 0 0 0 1 force @a +particle witch ^2.978 ^2.133 ^0.349 0 0 0 0 1 force @a +particle witch ^2.958 ^2.153 ^0.529 0 0 0 0 1 force @a +particle witch ^2.927 ^2.173 ^0.706 0 0 0 0 1 force @a +particle witch ^2.886 ^2.193 ^0.883 0 0 0 0 1 force @a +particle witch ^2.833 ^2.213 ^1.056 0 0 0 0 1 force @a +particle witch ^2.771 ^2.233 ^1.227 0 0 0 0 1 force @a +particle witch ^2.698 ^2.253 ^1.394 0 0 0 0 1 force @a +particle witch ^2.615 ^2.273 ^1.556 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.62 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f79.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f79.mcfunction new file mode 100644 index 0000000..3302e4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f79.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^2.522 ^2.293 ^1.714 0 0 0 0 1 force @a +particle witch ^2.420 ^2.313 ^1.866 0 0 0 0 1 force @a +particle witch ^2.309 ^2.333 ^2.012 0 0 0 0 1 force @a +particle witch ^2.189 ^2.353 ^2.151 0 0 0 0 1 force @a +particle witch ^2.060 ^2.373 ^2.283 0 0 0 0 1 force @a +particle witch ^1.923 ^2.393 ^2.408 0 0 0 0 1 force @a +particle witch ^1.779 ^2.413 ^2.524 0 0 0 0 1 force @a +particle witch ^1.628 ^2.433 ^2.632 0 0 0 0 1 force @a +particle witch ^1.470 ^2.453 ^2.730 0 0 0 0 1 force @a +particle witch ^1.307 ^2.473 ^2.820 0 0 0 0 1 force @a +particle witch ^1.138 ^2.493 ^2.899 0 0 0 0 1 force @a +particle witch ^0.964 ^2.513 ^2.968 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.64 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f8.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f8.mcfunction new file mode 100644 index 0000000..927be78 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f8.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.027 ^1.920 ^-0.016 0 0 0 0 1 force @a +particle witch ^0.029 ^1.940 ^-0.014 0 0 0 0 1 force @a +particle witch ^0.030 ^1.960 ^-0.013 0 0 0 0 1 force @a +particle witch ^0.031 ^1.980 ^-0.011 0 0 0 0 1 force @a +particle witch ^0.033 ^2.000 ^-0.009 0 0 0 0 1 force @a +particle witch ^0.034 ^2.020 ^-0.008 0 0 0 0 1 force @a +particle witch ^0.035 ^2.040 ^-0.006 0 0 0 0 1 force @a +particle witch ^0.036 ^2.060 ^-0.004 0 0 0 0 1 force @a +particle witch ^0.037 ^2.080 ^-0.002 0 0 0 0 1 force @a +particle witch ^0.037 ^2.100 ^0.001 0 0 0 0 1 force @a +particle witch ^0.038 ^2.120 ^0.003 0 0 0 0 1 force @a +particle witch ^0.038 ^2.140 ^0.005 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.24 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f80.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f80.mcfunction new file mode 100644 index 0000000..7582ca6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f80.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.786 ^2.533 ^3.027 0 0 0 0 1 force @a +particle witch ^0.604 ^2.553 ^3.075 0 0 0 0 1 force @a +particle witch ^0.419 ^2.573 ^3.112 0 0 0 0 1 force @a +particle witch ^0.233 ^2.593 ^3.138 0 0 0 0 1 force @a +particle witch ^0.044 ^2.613 ^3.153 0 0 0 0 1 force @a +particle witch ^-0.145 ^2.633 ^3.157 0 0 0 0 1 force @a +particle witch ^-0.335 ^2.653 ^3.149 0 0 0 0 1 force @a +particle witch ^-0.524 ^2.673 ^3.129 0 0 0 0 1 force @a +particle witch ^-0.713 ^2.693 ^3.099 0 0 0 0 1 force @a +particle witch ^-0.899 ^2.713 ^3.057 0 0 0 0 1 force @a +particle witch ^-1.083 ^2.733 ^3.003 0 0 0 0 1 force @a +particle witch ^-1.264 ^2.753 ^2.939 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.66 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f81.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f81.mcfunction new file mode 100644 index 0000000..dcc0ced --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f81.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.441 ^2.773 ^2.864 0 0 0 0 1 force @a +particle witch ^-1.613 ^2.793 ^2.778 0 0 0 0 1 force @a +particle witch ^-1.780 ^2.813 ^2.682 0 0 0 0 1 force @a +particle witch ^-1.942 ^2.833 ^2.576 0 0 0 0 1 force @a +particle witch ^-2.097 ^2.853 ^2.460 0 0 0 0 1 force @a +particle witch ^-2.245 ^2.873 ^2.334 0 0 0 0 1 force @a +particle witch ^-2.386 ^2.893 ^2.200 0 0 0 0 1 force @a +particle witch ^-2.519 ^2.913 ^2.057 0 0 0 0 1 force @a +particle witch ^-2.643 ^2.933 ^1.906 0 0 0 0 1 force @a +particle witch ^-2.758 ^2.953 ^1.748 0 0 0 0 1 force @a +particle witch ^-2.864 ^2.973 ^1.582 0 0 0 0 1 force @a +particle witch ^-2.960 ^2.993 ^1.411 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.68 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f82.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f82.mcfunction new file mode 100644 index 0000000..8de2db6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f82.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-3.045 ^3.013 ^1.233 0 0 0 0 1 force @a +particle witch ^-3.120 ^3.033 ^1.051 0 0 0 0 1 force @a +particle witch ^-3.184 ^3.053 ^0.863 0 0 0 0 1 force @a +particle witch ^-3.237 ^3.073 ^0.672 0 0 0 0 1 force @a +particle witch ^-3.278 ^3.093 ^0.478 0 0 0 0 1 force @a +particle witch ^-3.307 ^3.113 ^0.281 0 0 0 0 1 force @a +particle witch ^-3.325 ^3.133 ^0.082 0 0 0 0 1 force @a +particle witch ^-3.330 ^3.153 ^-0.117 0 0 0 0 1 force @a +particle witch ^-3.324 ^3.173 ^-0.317 0 0 0 0 1 force @a +particle witch ^-3.306 ^3.193 ^-0.517 0 0 0 0 1 force @a +particle witch ^-3.275 ^3.213 ^-0.716 0 0 0 0 1 force @a +particle witch ^-3.233 ^3.233 ^-0.913 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.7 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f83.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f83.mcfunction new file mode 100644 index 0000000..d4312bd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f83.mcfunction @@ -0,0 +1,12 @@ + +particle witch ^-3.179 ^3.253 ^-1.107 0 0 0 0 1 force @a +particle witch ^-3.113 ^3.273 ^-1.299 0 0 0 0 1 force @a +particle witch ^-3.036 ^3.293 ^-1.486 0 0 0 0 1 force @a +particle witch ^-2.947 ^3.313 ^-1.669 0 0 0 0 1 force @a + +function infinity_cave:mechanics/altar/sphere + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.72 1 + +particle minecraft:flash ~ ~ ~ 0 0 0 0 10 force +particle minecraft:end_rod ~ ~ ~ 0 0.5 0.5 1 100 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f9.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f9.mcfunction new file mode 100644 index 0000000..4430b04 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/frames/f9.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.039 ^2.160 ^0.008 0 0 0 0 1 force @a +particle witch ^0.039 ^2.180 ^0.010 0 0 0 0 1 force @a +particle witch ^0.039 ^2.200 ^0.013 0 0 0 0 1 force @a +particle witch ^0.039 ^2.220 ^0.015 0 0 0 0 1 force @a +particle witch ^0.039 ^2.240 ^0.018 0 0 0 0 1 force @a +particle witch ^0.038 ^2.260 ^0.021 0 0 0 0 1 force @a +particle witch ^0.037 ^2.280 ^0.023 0 0 0 0 1 force @a +particle witch ^0.037 ^2.300 ^0.026 0 0 0 0 1 force @a +particle witch ^0.036 ^2.320 ^0.029 0 0 0 0 1 force @a +particle witch ^0.034 ^2.340 ^0.031 0 0 0 0 1 force @a +particle witch ^0.033 ^2.360 ^0.034 0 0 0 0 1 force @a +particle witch ^0.031 ^2.380 ^0.036 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.26 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_0.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_0.mcfunction new file mode 100644 index 0000000..548be94 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_0.mcfunction @@ -0,0 +1,7 @@ +execute if score @s ic.altar matches 1 run function infinity_cave:mechanics/altar/frames/f1 +execute if score @s ic.altar matches 2 run function infinity_cave:mechanics/altar/frames/f2 +execute if score @s ic.altar matches 3 run function infinity_cave:mechanics/altar/frames/f3 +execute if score @s ic.altar matches 4 run function infinity_cave:mechanics/altar/frames/f4 +execute if score @s ic.altar matches 5 run function infinity_cave:mechanics/altar/frames/f5 +execute if score @s ic.altar matches 6 run function infinity_cave:mechanics/altar/frames/f6 +execute if score @s ic.altar matches 7 run function infinity_cave:mechanics/altar/frames/f7 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_1.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_1.mcfunction new file mode 100644 index 0000000..42f0e83 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_1.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 8 run function infinity_cave:mechanics/altar/frames/f8 +execute if score @s ic.altar matches 9 run function infinity_cave:mechanics/altar/frames/f9 +execute if score @s ic.altar matches 10 run function infinity_cave:mechanics/altar/frames/f10 +execute if score @s ic.altar matches 11 run function infinity_cave:mechanics/altar/frames/f11 +execute if score @s ic.altar matches 12 run function infinity_cave:mechanics/altar/frames/f12 +execute if score @s ic.altar matches 13 run function infinity_cave:mechanics/altar/frames/f13 +execute if score @s ic.altar matches 14 run function infinity_cave:mechanics/altar/frames/f14 +execute if score @s ic.altar matches 15 run function infinity_cave:mechanics/altar/frames/f15 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_10.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_10.mcfunction new file mode 100644 index 0000000..7b72e4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_10.mcfunction @@ -0,0 +1,4 @@ +execute if score @s ic.altar matches 80 run function infinity_cave:mechanics/altar/frames/f80 +execute if score @s ic.altar matches 81 run function infinity_cave:mechanics/altar/frames/f81 +execute if score @s ic.altar matches 82 run function infinity_cave:mechanics/altar/frames/f82 +execute if score @s ic.altar matches 83 run function infinity_cave:mechanics/altar/frames/f83 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_2.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_2.mcfunction new file mode 100644 index 0000000..213df73 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_2.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 16 run function infinity_cave:mechanics/altar/frames/f16 +execute if score @s ic.altar matches 17 run function infinity_cave:mechanics/altar/frames/f17 +execute if score @s ic.altar matches 18 run function infinity_cave:mechanics/altar/frames/f18 +execute if score @s ic.altar matches 19 run function infinity_cave:mechanics/altar/frames/f19 +execute if score @s ic.altar matches 20 run function infinity_cave:mechanics/altar/frames/f20 +execute if score @s ic.altar matches 21 run function infinity_cave:mechanics/altar/frames/f21 +execute if score @s ic.altar matches 22 run function infinity_cave:mechanics/altar/frames/f22 +execute if score @s ic.altar matches 23 run function infinity_cave:mechanics/altar/frames/f23 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_3.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_3.mcfunction new file mode 100644 index 0000000..29d1e81 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_3.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 24 run function infinity_cave:mechanics/altar/frames/f24 +execute if score @s ic.altar matches 25 run function infinity_cave:mechanics/altar/frames/f25 +execute if score @s ic.altar matches 26 run function infinity_cave:mechanics/altar/frames/f26 +execute if score @s ic.altar matches 27 run function infinity_cave:mechanics/altar/frames/f27 +execute if score @s ic.altar matches 28 run function infinity_cave:mechanics/altar/frames/f28 +execute if score @s ic.altar matches 29 run function infinity_cave:mechanics/altar/frames/f29 +execute if score @s ic.altar matches 30 run function infinity_cave:mechanics/altar/frames/f30 +execute if score @s ic.altar matches 31 run function infinity_cave:mechanics/altar/frames/f31 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_4.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_4.mcfunction new file mode 100644 index 0000000..47b5256 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_4.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 32 run function infinity_cave:mechanics/altar/frames/f32 +execute if score @s ic.altar matches 33 run function infinity_cave:mechanics/altar/frames/f33 +execute if score @s ic.altar matches 34 run function infinity_cave:mechanics/altar/frames/f34 +execute if score @s ic.altar matches 35 run function infinity_cave:mechanics/altar/frames/f35 +execute if score @s ic.altar matches 36 run function infinity_cave:mechanics/altar/frames/f36 +execute if score @s ic.altar matches 37 run function infinity_cave:mechanics/altar/frames/f37 +execute if score @s ic.altar matches 38 run function infinity_cave:mechanics/altar/frames/f38 +execute if score @s ic.altar matches 39 run function infinity_cave:mechanics/altar/frames/f39 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_5.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_5.mcfunction new file mode 100644 index 0000000..ea90e81 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_5.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 40 run function infinity_cave:mechanics/altar/frames/f40 +execute if score @s ic.altar matches 41 run function infinity_cave:mechanics/altar/frames/f41 +execute if score @s ic.altar matches 42 run function infinity_cave:mechanics/altar/frames/f42 +execute if score @s ic.altar matches 43 run function infinity_cave:mechanics/altar/frames/f43 +execute if score @s ic.altar matches 44 run function infinity_cave:mechanics/altar/frames/f44 +execute if score @s ic.altar matches 45 run function infinity_cave:mechanics/altar/frames/f45 +execute if score @s ic.altar matches 46 run function infinity_cave:mechanics/altar/frames/f46 +execute if score @s ic.altar matches 47 run function infinity_cave:mechanics/altar/frames/f47 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_6.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_6.mcfunction new file mode 100644 index 0000000..7618a05 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_6.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 48 run function infinity_cave:mechanics/altar/frames/f48 +execute if score @s ic.altar matches 49 run function infinity_cave:mechanics/altar/frames/f49 +execute if score @s ic.altar matches 50 run function infinity_cave:mechanics/altar/frames/f50 +execute if score @s ic.altar matches 51 run function infinity_cave:mechanics/altar/frames/f51 +execute if score @s ic.altar matches 52 run function infinity_cave:mechanics/altar/frames/f52 +execute if score @s ic.altar matches 53 run function infinity_cave:mechanics/altar/frames/f53 +execute if score @s ic.altar matches 54 run function infinity_cave:mechanics/altar/frames/f54 +execute if score @s ic.altar matches 55 run function infinity_cave:mechanics/altar/frames/f55 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_7.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_7.mcfunction new file mode 100644 index 0000000..7819ff3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_7.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 56 run function infinity_cave:mechanics/altar/frames/f56 +execute if score @s ic.altar matches 57 run function infinity_cave:mechanics/altar/frames/f57 +execute if score @s ic.altar matches 58 run function infinity_cave:mechanics/altar/frames/f58 +execute if score @s ic.altar matches 59 run function infinity_cave:mechanics/altar/frames/f59 +execute if score @s ic.altar matches 60 run function infinity_cave:mechanics/altar/frames/f60 +execute if score @s ic.altar matches 61 run function infinity_cave:mechanics/altar/frames/f61 +execute if score @s ic.altar matches 62 run function infinity_cave:mechanics/altar/frames/f62 +execute if score @s ic.altar matches 63 run function infinity_cave:mechanics/altar/frames/f63 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_8.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_8.mcfunction new file mode 100644 index 0000000..eba6bd9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_8.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 64 run function infinity_cave:mechanics/altar/frames/f64 +execute if score @s ic.altar matches 65 run function infinity_cave:mechanics/altar/frames/f65 +execute if score @s ic.altar matches 66 run function infinity_cave:mechanics/altar/frames/f66 +execute if score @s ic.altar matches 67 run function infinity_cave:mechanics/altar/frames/f67 +execute if score @s ic.altar matches 68 run function infinity_cave:mechanics/altar/frames/f68 +execute if score @s ic.altar matches 69 run function infinity_cave:mechanics/altar/frames/f69 +execute if score @s ic.altar matches 70 run function infinity_cave:mechanics/altar/frames/f70 +execute if score @s ic.altar matches 71 run function infinity_cave:mechanics/altar/frames/f71 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_9.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_9.mcfunction new file mode 100644 index 0000000..cf818c1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l0/l0_9.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 72 run function infinity_cave:mechanics/altar/frames/f72 +execute if score @s ic.altar matches 73 run function infinity_cave:mechanics/altar/frames/f73 +execute if score @s ic.altar matches 74 run function infinity_cave:mechanics/altar/frames/f74 +execute if score @s ic.altar matches 75 run function infinity_cave:mechanics/altar/frames/f75 +execute if score @s ic.altar matches 76 run function infinity_cave:mechanics/altar/frames/f76 +execute if score @s ic.altar matches 77 run function infinity_cave:mechanics/altar/frames/f77 +execute if score @s ic.altar matches 78 run function infinity_cave:mechanics/altar/frames/f78 +execute if score @s ic.altar matches 79 run function infinity_cave:mechanics/altar/frames/f79 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l1/l1_0.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l1/l1_0.mcfunction new file mode 100644 index 0000000..f2004f2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/l1/l1_0.mcfunction @@ -0,0 +1,13 @@ +execute if score @s ic.altar matches 0..7 run function infinity_cave:mechanics/altar/l0/l0_0 +execute if score @s ic.altar matches 8..15 run function infinity_cave:mechanics/altar/l0/l0_1 +execute if score @s ic.altar matches 16..23 run function infinity_cave:mechanics/altar/l0/l0_2 +execute if score @s ic.altar matches 24..31 run function infinity_cave:mechanics/altar/l0/l0_3 +execute if score @s ic.altar matches 32..39 run function infinity_cave:mechanics/altar/l0/l0_4 +execute if score @s ic.altar matches 40..47 run function infinity_cave:mechanics/altar/l0/l0_5 +execute if score @s ic.altar matches 48..55 run function infinity_cave:mechanics/altar/l0/l0_6 +execute if score @s ic.altar matches 56..63 run function infinity_cave:mechanics/altar/l0/l0_7 +execute if score @s ic.altar matches 64..71 run function infinity_cave:mechanics/altar/l0/l0_8 +execute if score @s ic.altar matches 72..79 run function infinity_cave:mechanics/altar/l0/l0_9 +execute if score @s ic.altar matches 80..83 run function infinity_cave:mechanics/altar/l0/l0_10 + +scoreboard players remove @s ic.altar 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/spawn.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/spawn.mcfunction new file mode 100644 index 0000000..40d3794 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/spawn.mcfunction @@ -0,0 +1,9 @@ +advancement revoke @s only infinity_cave:mechanics/altar/spawn + +tag @s add ic.altar + +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" Teleporting you to surface... Step outside of altar to cancel..","color":"gray"}] + +execute as @e[type=interaction,distance=..5,limit=1] run function infinity_cave:mechanics/altar/entity + +advancement revoke @s only infinity_cave:mechanics/altar/tick \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/sphere.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/sphere.mcfunction new file mode 100644 index 0000000..ca91099 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/sphere.mcfunction @@ -0,0 +1,300 @@ +particle minecraft:end_rod ^0.17988903 ^2.98 ^0.295364074 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.094411588 ^2.96 ^-0.479047443 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.480770863 ^2.94 ^0.353920015 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.684246533 ^2.92 ^0.073530142 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.507703913 ^2.9 ^-0.576399808 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.016390037 ^2.88 ^0.839840084 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.624746786 ^2.86 ^-0.655813581 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.964408063 ^2.84 ^0.065704553 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.799963152 ^2.82 ^0.638481757 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.166870223 ^2.8 ^-1.06402741 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.623692359 ^2.78 ^0.939472107 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.141183892 ^2.76 ^-0.283018239 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.072948118 ^2.74 ^-0.584108157 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.41085275 ^2.719999999 ^1.196996247 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.522439605 ^2.7 ^-1.198773065 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.232013518 ^2.679999999 ^0.547487618 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.315289801 ^2.66 ^0.440922599 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.690274746 ^2.64 ^-1.246563587 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.341573717 ^2.62 ^1.420889649 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.240926039 ^2.6 ^-0.836721319 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.51406051 ^2.58 ^-0.22632007 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.984449812 ^2.559999999 ^1.215425261 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.097067723 ^2.54 ^-1.593417038 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.170483054 ^2.52 ^1.131180543 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.657721567 ^2.5 ^-0.044262898 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.274726891 ^2.48 ^-1.106648705 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.195720691 ^2.46 ^1.705899589 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.024615473 ^2.44 ^-1.412997924 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.737051592 ^2.42 ^0.355319246 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.544005392 ^2.4 ^0.925228268 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.521039721 ^2.38 ^-1.750462114 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.809485225 ^2.36 ^1.665873245 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.745606458 ^2.34 ^-0.690838687 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.77684847 ^2.32 ^-0.678534831 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.862659353 ^2.3 ^1.722155288 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.533669642 ^2.28 ^-1.875312431 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.679977201 ^2.26 ^1.03444507 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.95979216 ^2.24 ^0.376317272 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.204154343 ^2.219999999 ^-1.619139377 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.208029177 ^2.2 ^2.028971133 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.539906334 ^2.18 ^-1.3697768 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.08169924 ^2.16 ^-0.030467614 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.529349669 ^2.14 ^1.442736839 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.154608906 ^2.12 ^-2.117001674 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.328279013 ^2.099999999 ^1.680974379 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.134086571 ^2.08 ^-0.345361412 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.822833012 ^2.06 ^-1.197363693 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.539887266 ^2.04 ^2.132351223 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.050996135 ^2.02 ^-1.953204322 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.111386749 ^2 ^0.736237731 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.070479125 ^1.979999999 ^0.890346108 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.932436097 ^1.96 ^-2.070981151 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.716736494 ^1.94 ^2.17317482 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.011120677 ^1.92 ^-1.12649617 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.259948896 ^1.9 ^-0.5316305 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.316440925 ^1.88 ^1.931989464 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.336617593 ^1.859999999 ^-2.329611255 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.833967425 ^1.839999999 ^1.500321127 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.381135211 ^1.82 ^0.133398293 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.676233724 ^1.799999999 ^-1.717626416 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.076232038 ^1.779999999 ^2.413667059 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.58372468 ^1.76 ^-1.842339854 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.426534089 ^1.74 ^0.290400266 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.99688228 ^1.719999999 ^1.433199622 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.507173245 ^1.7 ^-2.41925098 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.26715897 ^1.68 ^2.138202082 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.391524504 ^1.66 ^-0.724576114 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.264754452 ^1.64 ^-1.086870404 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.940610973 ^1.62 ^2.343256493 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.893749736 ^1.6 ^-2.375123452 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.274545018 ^1.579999999 ^1.153275752 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.468035588 ^1.56 ^0.68934776 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.360583098 ^1.54 ^-2.185683792 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.475335864 ^1.519999999 ^2.542372084 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.077159789 ^1.5 ^-1.560579126 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.597179728 ^1.48 ^-0.253490556 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.751361862 ^1.46 ^1.949649103 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.025677047 ^1.44 ^-2.631680203 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.804011064 ^1.42 ^1.93109919 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.645277823 ^1.4 ^-0.206167984 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.098046158 ^1.38 ^-1.641280695 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.440054272 ^1.36 ^2.637565589 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.462659564 ^1.339999999 ^-2.250561486 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.608329516 ^1.319999999 ^0.673956334 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.387123121 ^1.3 ^1.269505102 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.905832151 ^1.279999999 ^-2.557551195 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.063318501 ^1.26 ^2.506342707 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.485408575 ^1.24 ^-1.133642014 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.606978822 ^1.219999999 ^-0.845731296 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.355367343 ^1.2 ^2.392274934 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.618490756 ^1.18 ^-2.687948881 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.27871608 ^1.16 ^1.569029326 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.748339596 ^1.14 ^0.383444209 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.772707191 ^1.12 ^-2.145485777 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.142522449 ^1.1 ^2.787415891 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.993519472 ^1.08 ^-1.964555958 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.804628191 ^1.06 ^0.102277631 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.142823522 ^1.04 ^1.823926355 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.348911004 ^1.02 ^-2.79961803 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.637979826 ^1 ^2.305866885 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.772221928 ^0.98 ^-0.595302932 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.452167409 ^0.959999999 ^-1.437106468 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.839367674 ^0.94 ^2.72247349 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.222873628 ^0.919999999 ^-2.580344956 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.650603719 ^0.9 ^1.079027306 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.689170773 ^0.88 ^0.996975702 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.312230473 ^0.859999999 ^-2.557039536 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.761219257 ^0.84 ^2.777579025 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.442400535 ^0.82 ^-1.536970925 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.844676849 ^0.8 ^-0.517507129 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.751305663 ^0.78 ^2.307493981 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.267821645 ^0.759999999 ^-2.889752856 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.153308105 ^0.74 ^1.953372521 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.91228401 ^0.72 ^0.014207097 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.141407029 ^0.699999999 ^-1.981003771 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.241248343 ^0.68 ^2.911940802 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.791904569 ^0.659999999 ^-2.313758418 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.888590683 ^0.64 ^0.49643113 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.468904608 ^0.62 ^1.587485443 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.749221088 ^0.599999999 ^-2.842299732 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.369359938 ^0.58 ^2.605466054 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.773332535 ^0.56 ^-0.997510224 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.722218315 ^0.54 ^-1.139266189 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.239221463 ^0.52 ^2.682150287 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.899051796 ^0.499999999 ^-2.81810324 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.569407112 ^0.48 ^1.472327102 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.892238677 ^0.459999999 ^0.650657692 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.694866846 ^0.439999999 ^-2.435944658 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.396101162 ^0.42 ^2.943926607 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.282785017 ^0.399999999 ^-1.90496524 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.972659626 ^0.38 ^-0.137458169 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.100848367 ^0.36 ^2.111122008 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.12315485 ^0.339999999 ^-2.978125734 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.922310923 ^0.32 ^2.280859644 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.960211373 ^0.299999999 ^-0.383599566 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.443474561 ^0.28 ^-1.717856826 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.641734555 ^0.26 ^2.919002699 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.499401504 ^0.239999999 ^-2.58731427 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.854785062 ^0.22 ^0.895434115 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.711157865 ^0.199999999 ^1.268709198 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.142606964 ^0.18 ^-2.768040702 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.027651219 ^0.16 ^2.813953264 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.659444709 ^0.139999999 ^-1.381214624 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.89482658 ^0.12 ^-0.778189615 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.609289362 ^0.099999999 ^2.529859234 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.522360024 ^0.079999999 ^-2.953089909 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.380326046 ^0.06 ^1.824951483 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.988247465 ^0.039999999 ^0.262253859 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.02642585 ^0.02 ^-2.212057476 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0 ^0 ^3 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.026425849 ^-0.02 ^-2.212057476 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.988247466 ^-0.040000001 ^0.262253859 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.380326045 ^-0.060000001 ^1.824951483 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.522360025 ^-0.08 ^-2.953089909 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.609289363 ^-0.100000001 ^2.529859234 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.894826579 ^-0.120000001 ^-0.778189615 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.65944471 ^-0.14 ^-1.381214624 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.027651218 ^-0.16 ^2.813953264 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.142606963 ^-0.180000001 ^-2.768040702 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.711157866 ^-0.2 ^1.268709198 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.854785061 ^-0.22 ^0.895434115 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.499401505 ^-0.240000001 ^-2.58731427 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.641734556 ^-0.26 ^2.919002699 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.44347456 ^-0.28 ^-1.717856826 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.960211374 ^-0.300000001 ^-0.383599566 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.922310922 ^-0.320000001 ^2.280859644 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.123154849 ^-0.34 ^-2.978125734 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.100848368 ^-0.360000001 ^2.111122008 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.972659625 ^-0.380000001 ^-0.137458169 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.282785018 ^-0.4 ^-1.90496524 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.396101161 ^-0.42 ^2.943926607 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.694866845 ^-0.440000001 ^-2.435944658 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.892238678 ^-0.46 ^0.650657692 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.569407111 ^-0.48 ^1.472327102 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.899051797 ^-0.500000001 ^-2.81810324 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.239221464 ^-0.52 ^2.682150287 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.722218314 ^-0.54 ^-1.139266189 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.773332536 ^-0.560000001 ^-0.997510224 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.369359937 ^-0.580000001 ^2.605466054 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.749221087 ^-0.6 ^-2.842299732 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.468904609 ^-0.620000001 ^1.587485443 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.888590682 ^-0.640000001 ^0.49643113 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.79190457 ^-0.66 ^-2.313758418 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.241248344 ^-0.68 ^2.911940802 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.141407028 ^-0.700000001 ^-1.981003771 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.912284011 ^-0.72 ^0.014207097 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.153308104 ^-0.74 ^1.953372521 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.267821646 ^-0.760000001 ^-2.889752856 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.751305664 ^-0.78 ^2.307493981 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.844676848 ^-0.8 ^-0.517507129 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.442400536 ^-0.820000001 ^-1.536970925 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.761219256 ^-0.840000001 ^2.777579025 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.312230472 ^-0.86 ^-2.557039536 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.689170774 ^-0.88 ^0.996975702 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.650603718 ^-0.900000001 ^1.079027306 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.222873629 ^-0.92 ^-2.580344956 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.839367675 ^-0.94 ^2.72247349 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.452167408 ^-0.960000001 ^-1.437106468 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.772221929 ^-0.98 ^-0.595302932 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.637979825 ^-1 ^2.305866885 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.348911003 ^-1.020000001 ^-2.79961803 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.142823523 ^-1.04 ^1.823926355 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.80462819 ^-1.06 ^0.102277631 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.993519473 ^-1.080000001 ^-1.964555958 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.142522448 ^-1.1 ^2.787415891 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.77270719 ^-1.12 ^-2.145485777 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.748339597 ^-1.14 ^0.383444209 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.278716079 ^-1.160000001 ^1.569029326 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.618490757 ^-1.18 ^-2.687948881 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.355367344 ^-1.2 ^2.392274934 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.606978821 ^-1.220000001 ^-0.845731296 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.485408576 ^-1.24 ^-1.133642014 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.0633185 ^-1.26 ^2.506342707 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.90583215 ^-1.280000001 ^-2.557551195 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.387123122 ^-1.3 ^1.269505102 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.608329515 ^-1.32 ^0.673956334 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.462659565 ^-1.340000001 ^-2.250561486 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.440054273 ^-1.36 ^2.637565589 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.098046157 ^-1.38 ^-1.641280695 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.645277824 ^-1.4 ^-0.206167984 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.804011063 ^-1.420000001 ^1.93109919 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.025677048 ^-1.44 ^-2.631680203 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.751361863 ^-1.46 ^1.949649103 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.597179727 ^-1.480000001 ^-0.253490556 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.07715979 ^-1.5 ^-1.560579126 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.475335863 ^-1.52 ^2.542372084 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.360583097 ^-1.540000001 ^-2.185683792 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.468035589 ^-1.56 ^0.68934776 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.274545017 ^-1.58 ^1.153275752 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.893749737 ^-1.600000001 ^-2.375123452 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.940610974 ^-1.62 ^2.343256493 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.264754451 ^-1.64 ^-1.086870404 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.391524505 ^-1.66 ^-0.724576114 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.267158969 ^-1.680000001 ^2.138202082 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.507173244 ^-1.7 ^-2.41925098 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.996882281 ^-1.72 ^1.433199622 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.426534088 ^-1.740000001 ^0.290400266 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.583724681 ^-1.76 ^-1.842339854 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.076232039 ^-1.78 ^2.413667059 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.676233723 ^-1.800000001 ^-1.717626416 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.381135212 ^-1.82 ^0.133398293 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.833967424 ^-1.84 ^1.500321127 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.336617594 ^-1.860000001 ^-2.329611255 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.316440926 ^-1.88 ^1.931989464 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.259948895 ^-1.9 ^-0.5316305 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.011120678 ^-1.92 ^-1.12649617 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.716736493 ^-1.940000001 ^2.17317482 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.932436096 ^-1.96 ^-2.070981151 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.070479126 ^-1.98 ^0.890346108 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.111386748 ^-2 ^0.736237731 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.050996136 ^-2.02 ^-1.953204322 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.539887267 ^-2.04 ^2.132351223 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.822833011 ^-2.060000001 ^-1.197363693 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.134086572 ^-2.08 ^-0.345361412 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.328279012 ^-2.1 ^1.680974379 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.154608905 ^-2.12 ^-2.117001674 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.52934967 ^-2.140000001 ^1.442736839 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.081699239 ^-2.16 ^-0.030467614 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.539906335 ^-2.18 ^-1.3697768 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.208029176 ^-2.2 ^2.028971133 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.204154342 ^-2.22 ^-1.619139377 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.959792161 ^-2.24 ^0.376317272 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.6799772 ^-2.26 ^1.03444507 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.533669643 ^-2.280000001 ^-1.875312431 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.862659354 ^-2.3 ^1.722155288 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.776848469 ^-2.320000001 ^-0.678534831 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.745606459 ^-2.34 ^-0.690838687 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.809485224 ^-2.36 ^1.665873245 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.52103972 ^-2.38 ^-1.750462114 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.544005393 ^-2.400000001 ^0.925228268 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.737051591 ^-2.42 ^0.355319246 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.024615474 ^-2.44 ^-1.412997924 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.195720692 ^-2.46 ^1.705899589 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.27472689 ^-2.48 ^-1.106648705 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.657721568 ^-2.5 ^-0.044262898 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.170483053 ^-2.520000001 ^1.131180543 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.097067724 ^-2.54 ^-1.593417038 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.984449813 ^-2.56 ^1.215425261 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.514060509 ^-2.58 ^-0.22632007 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.24092604 ^-2.6 ^-0.836721319 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.341573716 ^-2.62 ^1.420889649 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.690274745 ^-2.64 ^-1.246563587 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.315289802 ^-2.66 ^0.440922599 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.232013517 ^-2.68 ^0.547487618 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.522439606 ^-2.7 ^-1.198773065 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.410852751 ^-2.72 ^1.196996247 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.072948117 ^-2.74 ^-0.584108157 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.141183893 ^-2.76 ^-0.283018239 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.623692358 ^-2.780000001 ^0.939472107 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.166870222 ^-2.8 ^-1.06402741 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.799963153 ^-2.82 ^0.638481757 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.964408062 ^-2.840000001 ^0.065704553 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.624746787 ^-2.860000001 ^-0.655813581 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.016390036 ^-2.88 ^0.839840084 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.507703912 ^-2.9 ^-0.576399808 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.684246534 ^-2.92 ^0.073530142 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.480770862 ^-2.94 ^0.353920015 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.094411589 ^-2.96 ^-0.479047443 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.179889031 ^-2.980000001 ^0.295364074 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0 ^-3 ^0 0 0 0 0.001 10 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/tick.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/tick.mcfunction new file mode 100644 index 0000000..e101a0b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/altar/tick.mcfunction @@ -0,0 +1,3 @@ +execute as @e[type=interaction,scores={ic.altar=1..}] at @s positioned ~ ~ ~ run function infinity_cave:mechanics/altar/l1/l1_0 + +advancement revoke @s[tag=ic.altar] only infinity_cave:mechanics/altar/tick \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/darkness_cleanse.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/darkness_cleanse.mcfunction new file mode 100644 index 0000000..32e1028 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/darkness_cleanse.mcfunction @@ -0,0 +1,7 @@ +effect clear @s darkness + +clear @s flint{ic:darkness_cleanse} 1 + +playsound particle.soul_escape player @s ~ ~ ~ 1 1 1 + +advancement revoke @s only infinity_cave:mechanics/darkness_cleanse \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/food/burnt_meat.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/food/burnt_meat.mcfunction new file mode 100644 index 0000000..50431eb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/food/burnt_meat.mcfunction @@ -0,0 +1,7 @@ +advancement revoke @s only infinity_cave:mechanics/food/burnt_meat + +effect give @s minecraft:strength 60 1 true + +effect give @s minecraft:strength 1 3 true + +effect clear @s fire_resistance \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/food/piglin_meat.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/food/piglin_meat.mcfunction new file mode 100644 index 0000000..dc79573 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/food/piglin_meat.mcfunction @@ -0,0 +1,5 @@ +advancement revoke @s only infinity_cave:mechanics/food/piglin_meat + +effect give @s minecraft:absorption 10 1 true +effect give @s minecraft:strength 10 1 true +effect give @s saturation 1 1 true \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/magic_spyglass/ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/magic_spyglass/ray.mcfunction new file mode 100644 index 0000000..26ca900 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/magic_spyglass/ray.mcfunction @@ -0,0 +1,4 @@ +execute store result score @s ic.data positioned ~-0.05 ~-0.05 ~-0.05 as @e[type=#infinity_cave:all_living,tag=!ic.raycast,dx=0,sort=nearest] run function infinity_cave:mechanics/magic_spyglass/select + +scoreboard players add #distance ic.int 1 +execute if score #hit ic.int matches 0 if score #distance ic.int matches ..4000 positioned ^ ^ ^0.01 run function infinity_cave:mechanics/magic_spyglass/ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/magic_spyglass/select.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/magic_spyglass/select.mcfunction new file mode 100644 index 0000000..864fc51 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/magic_spyglass/select.mcfunction @@ -0,0 +1,3 @@ +execute at @s run particle minecraft:dust 0.902 0.063 0.063 0.33 ~ ~ ~ 0.4 0.8 0.4 0 1 force + +data get entity @s Health \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/magic_spyglass/start.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/magic_spyglass/start.mcfunction new file mode 100644 index 0000000..45e2277 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/magic_spyglass/start.mcfunction @@ -0,0 +1,9 @@ +advancement revoke @s only infinity_cave:mechanics/magic_spyglass + +tag @s add ic.raycast +scoreboard players set #hit ic.int 0 +scoreboard players set #distance ic.int 0 +execute anchored eyes run function infinity_cave:mechanics/magic_spyglass/ray +tag @s remove ic.raycast + +title @s actionbar [{"text":"Health: ","color":"red"},{"score":{"name":"@s","objective":"ic.data"},"color":"green"}] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/_rc_check.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/_rc_check.mcfunction new file mode 100644 index 0000000..2c2c969 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/_rc_check.mcfunction @@ -0,0 +1,7 @@ +# Resets Rune Count +scoreboard players set %mainhand ic.int 0 +scoreboard players set %offhand ic.int 0 + +kill @e[type=minecraft:eye_of_ender,nbt={Item:{id:"minecraft:ender_eye",Count:1b,tag:{ic:rc}}},limit=1,sort=arbitrary] + +advancement revoke @s only infinity_cave:mechanics/rc/_rc_check \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/activate.mcfunction new file mode 100644 index 0000000..01223d4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/activate.mcfunction @@ -0,0 +1,11 @@ +execute if entity @s[predicate=infinity_cave:enchantlet/enchantlet_1] run function infinity_cave:mechanics/rc/enchant/tier_1/check + +execute if entity @s[predicate=infinity_cave:enchantlet/enchantlet_2] run function infinity_cave:mechanics/rc/enchant/tier_2/check + +execute if entity @s[predicate=infinity_cave:enchantlet/enchantlet_3] run function infinity_cave:mechanics/rc/enchant/tier_3/check + +execute if entity @s[predicate=infinity_cave:enchantlet/enchantlet_4] run function infinity_cave:mechanics/rc/enchant/tier_4/check + +execute if entity @s[predicate=infinity_cave:enchantlet/enchantlet_5] run function infinity_cave:mechanics/rc/enchant/tier_5/check + +execute if entity @s[predicate=infinity_cave:enchantlet/offhand] run function infinity_cave:mechanics/rc/enchant/offhand \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/offhand.mcfunction new file mode 100644 index 0000000..6c23e56 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/offhand.mcfunction @@ -0,0 +1,9 @@ +execute if entity @s[predicate=infinity_cave:enchantlet/off_1] run function infinity_cave:mechanics/rc/enchant/tier_1/offhand + +execute if entity @s[predicate=infinity_cave:enchantlet/off_2] run function infinity_cave:mechanics/rc/enchant/tier_2/offhand + +execute if entity @s[predicate=infinity_cave:enchantlet/off_3] run function infinity_cave:mechanics/rc/enchant/tier_3/offhand + +execute if entity @s[predicate=infinity_cave:enchantlet/off_4] run function infinity_cave:mechanics/rc/enchant/tier_4/offhand + +execute if entity @s[predicate=infinity_cave:enchantlet/off_5] run function infinity_cave:mechanics/rc/enchant/tier_5/offhand \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/check.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/check.mcfunction new file mode 100644 index 0000000..3da0c2e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/check.mcfunction @@ -0,0 +1,9 @@ +execute if entity @s[level=..5,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_1/not_enough + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=!infinity_cave:enchantlet/enchantable] run function infinity_cave:mechanics/rc/enchant/tier_1/not_enchantable + +execute if entity @s[level=6..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/too_much] run function infinity_cave:mechanics/rc/enchant/tier_1/much + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_1/is_enchanted + +execute if entity @s[level=6..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/too_much,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_1/enchant diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/enchant.mcfunction new file mode 100644 index 0000000..4fa0913 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/enchant.mcfunction @@ -0,0 +1,7 @@ +item modify entity @s[predicate=infinity_cave:enchantlet/enchantable] weapon.offhand infinity_cave:enchants/tier_1 + +xp add @s -6 levels + +execute at @s run function infinity_cave:mechanics/rc/enchant/tier_1/particles + +playsound block.enchantment_table.use player @s ~ ~ ~ 0.5 2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/is_enchanted.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/is_enchanted.mcfunction new file mode 100644 index 0000000..747532e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/is_enchanted.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is already enchanted!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/much.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/much.mcfunction new file mode 100644 index 0000000..b4c95a6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/much.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are holding more than one item!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enchantable.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enchantable.mcfunction new file mode 100644 index 0000000..fd7561e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enchantable.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is not enchantable!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enough.mcfunction new file mode 100644 index 0000000..ce94018 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/offhand.mcfunction new file mode 100644 index 0000000..8519bc0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/offhand.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You cannot use this in the offhand!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/particles.mcfunction new file mode 100644 index 0000000..b0d58d9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/particles.mcfunction @@ -0,0 +1,84 @@ +particle portal ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle portal ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle portal ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle portal ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle portal ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle portal ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle portal ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle portal ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle portal ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle portal ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle portal ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle portal ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle portal ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle portal ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle portal ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle portal ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle portal ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle portal ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle portal ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle portal ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle portal ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle portal ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle portal ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle portal ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle portal ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle portal ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle portal ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle portal ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle portal ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle portal ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle portal ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle portal ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle portal ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle portal ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle portal ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle portal ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle portal ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle portal ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle portal ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle portal ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle portal ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle portal ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle portal ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle portal ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle portal ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle portal ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle portal ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle portal ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle portal ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle portal ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle portal ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle portal ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle portal ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle portal ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle portal ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle portal ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle portal ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle portal ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle portal ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle portal ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle portal ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle portal ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle portal ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle portal ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle portal ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle portal ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle portal ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle portal ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle portal ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle portal ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle portal ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle portal ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle portal ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle portal ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle portal ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle portal ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle portal ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle portal ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle portal ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle portal ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle portal ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle portal ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/check.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/check.mcfunction new file mode 100644 index 0000000..872d1bf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/check.mcfunction @@ -0,0 +1,11 @@ +execute if entity @s[level=..9,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_2/not_enough + +execute if entity @s[predicate=!infinity_cave:enchantlet/enchantable] run function infinity_cave:mechanics/rc/enchant/tier_2/not_enchantable + +execute if entity @s[level=10..,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/too_much] run function infinity_cave:mechanics/rc/enchant/tier_2/much + +execute if entity @s[predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_2/is_enchanted + +execute if entity @s[level=10..,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/too_much,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_2/enchant + +execute if entity @s[predicate=infinity_cave:enchantlet/offhand] run function infinity_cave:mechanics/rc/enchant/tier_2/offhand diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/enchant.mcfunction new file mode 100644 index 0000000..66c7725 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/enchant.mcfunction @@ -0,0 +1,7 @@ +item modify entity @s[predicate=infinity_cave:enchantlet/enchantable] weapon.offhand infinity_cave:enchants/tier_2 + +xp add @s -10 levels + +execute at @s run function infinity_cave:mechanics/rc/enchant/tier_2/particles + +playsound block.enchantment_table.use player @s ~ ~ ~ 0.5 1.6 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/is_enchanted.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/is_enchanted.mcfunction new file mode 100644 index 0000000..3b9a105 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/is_enchanted.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is already enchanted!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/much.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/much.mcfunction new file mode 100644 index 0000000..48cbc3e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/much.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are holding more than one item!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enchantable.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enchantable.mcfunction new file mode 100644 index 0000000..4bf2db9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enchantable.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is not enchantable!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enough.mcfunction new file mode 100644 index 0000000..f1ae848 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/offhand.mcfunction new file mode 100644 index 0000000..fc31046 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/offhand.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You cannot use this in the offhand!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/particles.mcfunction new file mode 100644 index 0000000..0f4e2f1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/particles.mcfunction @@ -0,0 +1,84 @@ +particle happy_villager ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle happy_villager ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle happy_villager ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle happy_villager ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle happy_villager ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle happy_villager ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle happy_villager ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle happy_villager ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle happy_villager ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle happy_villager ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle happy_villager ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle happy_villager ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle happy_villager ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle happy_villager ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle happy_villager ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle happy_villager ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle happy_villager ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle happy_villager ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle happy_villager ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle happy_villager ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle happy_villager ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle happy_villager ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle happy_villager ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle happy_villager ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle happy_villager ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle happy_villager ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle happy_villager ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle happy_villager ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle happy_villager ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle happy_villager ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle happy_villager ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle happy_villager ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle happy_villager ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle happy_villager ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle happy_villager ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle happy_villager ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle happy_villager ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle happy_villager ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle happy_villager ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle happy_villager ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle happy_villager ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle happy_villager ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle happy_villager ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle happy_villager ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle happy_villager ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle happy_villager ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle happy_villager ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle happy_villager ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle happy_villager ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle happy_villager ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle happy_villager ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle happy_villager ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle happy_villager ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle happy_villager ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle happy_villager ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle happy_villager ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle happy_villager ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle happy_villager ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle happy_villager ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle happy_villager ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle happy_villager ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle happy_villager ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle happy_villager ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle happy_villager ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle happy_villager ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle happy_villager ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle happy_villager ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle happy_villager ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle happy_villager ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle happy_villager ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle happy_villager ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle happy_villager ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle happy_villager ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle happy_villager ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle happy_villager ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle happy_villager ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle happy_villager ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle happy_villager ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle happy_villager ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle happy_villager ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle happy_villager ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle happy_villager ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle happy_villager ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle happy_villager ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/check.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/check.mcfunction new file mode 100644 index 0000000..93f4fc5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/check.mcfunction @@ -0,0 +1,11 @@ +execute if entity @s[level=..15,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_3/not_enough + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=!infinity_cave:enchantlet/enchantable] run function infinity_cave:mechanics/rc/enchant/tier_3/not_enchantable + +execute if entity @s[level=16..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/too_much] run function infinity_cave:mechanics/rc/enchant/tier_3/much + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_3/is_enchanted + +execute if entity @s[level=16..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/too_much,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_3/enchant + +execute if entity @s[predicate=infinity_cave:enchantlet/offhand] run function infinity_cave:mechanics/rc/enchant/tier_3/offhand diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/enchant.mcfunction new file mode 100644 index 0000000..cac62fc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/enchant.mcfunction @@ -0,0 +1,7 @@ +item modify entity @s[predicate=infinity_cave:enchantlet/enchantable] weapon.offhand infinity_cave:enchants/tier_3 + +xp add @s -16 levels + +execute at @s run function infinity_cave:mechanics/rc/enchant/tier_3/particles + +playsound minecraft:block.respawn_anchor.charge player @s ~ ~ ~ 0.5 0 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/is_enchanted.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/is_enchanted.mcfunction new file mode 100644 index 0000000..8def9e6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/is_enchanted.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is already enchanted!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_3 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/much.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/much.mcfunction new file mode 100644 index 0000000..bdd859c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/much.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are holding more than one item!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_3 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enchantable.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enchantable.mcfunction new file mode 100644 index 0000000..03b73f8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enchantable.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is not enchantable!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_3 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enough.mcfunction new file mode 100644 index 0000000..edeb551 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_3 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/offhand.mcfunction new file mode 100644 index 0000000..03aec79 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/offhand.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You cannot use this in the offhand!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_3 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/particles.mcfunction new file mode 100644 index 0000000..6316d39 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/particles.mcfunction @@ -0,0 +1,84 @@ +particle minecraft:sculk_charge 1 ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/check.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/check.mcfunction new file mode 100644 index 0000000..5ee6932 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/check.mcfunction @@ -0,0 +1,11 @@ +execute if entity @s[level=..21,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_4/not_enough + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=!infinity_cave:enchantlet/enchantable] run function infinity_cave:mechanics/rc/enchant/tier_4/not_enchantable + +execute if entity @s[level=22..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/too_much] run function infinity_cave:mechanics/rc/enchant/tier_4/much + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_4/is_enchanted + +execute if entity @s[level=22..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/too_much,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_4/enchant + +execute if entity @s[predicate=infinity_cave:enchantlet/offhand] run function infinity_cave:mechanics/rc/enchant/tier_4/offhand diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/enchant.mcfunction new file mode 100644 index 0000000..b9801c8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/enchant.mcfunction @@ -0,0 +1,7 @@ +item modify entity @s[predicate=infinity_cave:enchantlet/enchantable] weapon.offhand infinity_cave:enchants/tier_4 + +xp add @s -22 levels + +execute at @s run function infinity_cave:mechanics/rc/enchant/tier_4/particles + +playsound minecraft:entity.skeleton_horse.death player @s ~ ~ ~ 0.5 0.75 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/is_enchanted.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/is_enchanted.mcfunction new file mode 100644 index 0000000..a87c299 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/is_enchanted.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is already enchanted!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_4 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/much.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/much.mcfunction new file mode 100644 index 0000000..cb345af --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/much.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are holding more than one item!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_4 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enchantable.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enchantable.mcfunction new file mode 100644 index 0000000..c5a4bf9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enchantable.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is not enchantable!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_4 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enough.mcfunction new file mode 100644 index 0000000..18f3bd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_4 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/offhand.mcfunction new file mode 100644 index 0000000..1bfacd1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/offhand.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You cannot use this in the offhand!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_4 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/particles.mcfunction new file mode 100644 index 0000000..5377659 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/particles.mcfunction @@ -0,0 +1,84 @@ +particle flame ~0.100 ~0.100 ~1.750 0 0 0 0.02 3 force @a +particle flame ~0.413 ~0.100 ~1.701 0 0 0 0.02 3 force @a +particle flame ~0.802 ~0.100 ~1.555 0 0 0 0.02 3 force @a +particle flame ~1.146 ~0.100 ~1.322 0 0 0 0.02 3 force @a +particle flame ~1.426 ~0.100 ~1.015 0 0 0 0.02 3 force @a +particle flame ~1.625 ~0.100 ~0.650 0 0 0 0.02 3 force @a +particle flame ~1.732 ~0.100 ~0.248 0 0 0 0.02 3 force @a +particle flame ~1.742 ~0.100 ~-0.168 0 0 0 0.02 3 force @a +particle flame ~1.653 ~0.100 ~-0.574 0 0 0 0.02 3 force @a +particle flame ~1.471 ~0.100 ~-0.947 0 0 0 0.02 3 force @a +particle flame ~1.206 ~0.100 ~-1.268 0 0 0 0.02 3 force @a +particle flame ~0.873 ~0.100 ~-1.516 0 0 0 0.02 3 force @a +particle flame ~0.491 ~0.100 ~-1.680 0 0 0 0.02 3 force @a +particle flame ~0.081 ~0.100 ~-1.748 0 0 0 0.02 3 force @a +particle flame ~-0.333 ~0.100 ~-1.718 0 0 0 0.02 3 force @a +particle flame ~-0.729 ~0.100 ~-1.591 0 0 0 0.02 3 force @a +particle flame ~-1.084 ~0.100 ~-1.374 0 0 0 0.02 3 force @a +particle flame ~-1.377 ~0.100 ~-1.080 0 0 0 0.02 3 force @a +particle flame ~-1.593 ~0.100 ~-0.724 0 0 0 0.02 3 force @a +particle flame ~-1.719 ~0.100 ~-0.328 0 0 0 0.02 3 force @a +particle flame ~-1.748 ~0.100 ~0.087 0 0 0 0.02 3 force @a +particle flame ~-1.678 ~0.100 ~0.496 0 0 0 0.02 3 force @a +particle flame ~-1.514 ~0.100 ~0.878 0 0 0 0.02 3 force @a +particle flame ~-1.264 ~0.100 ~1.210 0 0 0 0.02 3 force @a +particle flame ~-0.943 ~0.100 ~1.474 0 0 0 0.02 3 force @a +particle flame ~-0.568 ~0.100 ~1.655 0 0 0 0.02 3 force @a +particle flame ~-0.162 ~0.100 ~1.742 0 0 0 0.02 3 force @a +particle flame ~0.254 ~0.100 ~1.732 0 0 0 0.02 3 force @a +particle flame ~0.655 ~0.100 ~1.623 0 0 0 0.02 3 force @a +particle flame ~1.019 ~0.100 ~1.423 0 0 0 0.02 3 force @a +particle flame ~1.326 ~0.100 ~1.142 0 0 0 0.02 3 force @a +particle flame ~1.558 ~0.100 ~0.797 0 0 0 0.02 3 force @a +particle flame ~1.702 ~0.100 ~0.407 0 0 0 0.02 3 force @a +particle flame ~1.750 ~0.100 ~-0.006 0 0 0 0.02 3 force @a +particle flame ~1.699 ~0.100 ~-0.418 0 0 0 0.02 3 force @a +particle flame ~1.553 ~0.100 ~-0.807 0 0 0 0.02 3 force @a +particle flame ~1.319 ~0.100 ~-1.151 0 0 0 0.02 3 force @a +particle flame ~1.010 ~0.100 ~-1.429 0 0 0 0.02 3 force @a +particle flame ~0.644 ~0.100 ~-1.627 0 0 0 0.02 3 force @a +particle flame ~0.243 ~0.100 ~-1.733 0 0 0 0.02 3 force @a +particle flame ~-0.173 ~0.100 ~-1.741 0 0 0 0.02 3 force @a +particle flame ~-0.579 ~0.100 ~-1.651 0 0 0 0.02 3 force @a +particle flame ~-0.952 ~0.100 ~-1.468 0 0 0 0.02 3 force @a +particle flame ~-1.271 ~0.100 ~-1.202 0 0 0 0.02 3 force @a +particle flame ~-1.519 ~0.100 ~-0.869 0 0 0 0.02 3 force @a +particle flame ~-1.681 ~0.100 ~-0.486 0 0 0 0.02 3 force @a +particle flame ~-1.748 ~0.100 ~-0.076 0 0 0 0.02 3 force @a +particle flame ~-1.717 ~0.100 ~0.339 0 0 0 0.02 3 force @a +particle flame ~-1.588 ~0.100 ~0.734 0 0 0 0.02 3 force @a +particle flame ~-1.370 ~0.100 ~1.088 0 0 0 0.02 3 force @a +particle flame ~-1.075 ~0.100 ~1.381 0 0 0 0.02 3 force @a +particle flame ~-0.719 ~0.100 ~1.595 0 0 0 0.02 3 force @a +particle flame ~-0.323 ~0.100 ~1.720 0 0 0 0.02 3 force @a +particle flame ~0.092 ~0.100 ~1.748 0 0 0 0.02 3 force @a +particle flame ~0.502 ~0.100 ~1.677 0 0 0 0.02 3 force @a +particle flame ~0.883 ~0.100 ~1.511 0 0 0 0.02 3 force @a +particle flame ~1.214 ~0.100 ~1.260 0 0 0 0.02 3 force @a +particle flame ~1.477 ~0.100 ~0.938 0 0 0 0.02 3 force @a +particle flame ~1.657 ~0.100 ~0.563 0 0 0 0.02 3 force @a +particle flame ~1.743 ~0.100 ~0.156 0 0 0 0.02 3 force @a +particle flame ~1.731 ~0.100 ~-0.259 0 0 0 0.02 3 force @a +particle flame ~1.621 ~0.100 ~-0.660 0 0 0 0.02 3 force @a +particle flame ~1.419 ~0.100 ~-1.024 0 0 0 0.02 3 force @a +particle flame ~1.138 ~0.100 ~-1.329 0 0 0 0.02 3 force @a +particle flame ~0.792 ~0.100 ~-1.560 0 0 0 0.02 3 force @a +particle flame ~0.402 ~0.100 ~-1.703 0 0 0 0.02 3 force @a +particle flame ~-0.011 ~0.100 ~-1.750 0 0 0 0.02 3 force @a +particle flame ~-0.423 ~0.100 ~-1.698 0 0 0 0.02 3 force @a +particle flame ~-0.812 ~0.100 ~-1.550 0 0 0 0.02 3 force @a +particle flame ~-1.155 ~0.100 ~-1.315 0 0 0 0.02 3 force @a +particle flame ~-1.432 ~0.100 ~-1.006 0 0 0 0.02 3 force @a +particle flame ~-1.629 ~0.100 ~-0.639 0 0 0 0.02 3 force @a +particle flame ~-1.734 ~0.100 ~-0.237 0 0 0 0.02 3 force @a +particle flame ~-1.741 ~0.100 ~0.179 0 0 0 0.02 3 force @a +particle flame ~-1.650 ~0.100 ~0.584 0 0 0 0.02 3 force @a +particle flame ~-1.465 ~0.100 ~0.957 0 0 0 0.02 3 force @a +particle flame ~-1.198 ~0.100 ~1.275 0 0 0 0.02 3 force @a +particle flame ~-0.864 ~0.100 ~1.522 0 0 0 0.02 3 force @a +particle flame ~-0.480 ~0.100 ~1.683 0 0 0 0.02 3 force @a +particle flame ~-0.070 ~0.100 ~1.749 0 0 0 0.02 3 force @a +particle flame ~0.344 ~0.100 ~1.716 0 0 0 0.02 3 force @a +particle flame ~0.739 ~0.100 ~1.586 0 0 0 0.02 3 force @a +particle flame ~1.093 ~0.100 ~1.367 0 0 0 0.02 3 force @a +particle flame ~1.384 ~0.100 ~1.071 0 0 0 0.02 3 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/check.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/check.mcfunction new file mode 100644 index 0000000..e3fc888 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/check.mcfunction @@ -0,0 +1,11 @@ +execute if entity @s[level=..29,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_5/not_enough + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=!infinity_cave:enchantlet/enchantable] run function infinity_cave:mechanics/rc/enchant/tier_5/not_enchantable + +execute if entity @s[level=30..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/too_much] run function infinity_cave:mechanics/rc/enchant/tier_5/much + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_5/is_enchanted + +execute if entity @s[level=30..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/too_much,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_5/enchant + +execute if entity @s[predicate=infinity_cave:enchantlet/offhand] run function infinity_cave:mechanics/rc/enchant/tier_5/offhand diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/enchant.mcfunction new file mode 100644 index 0000000..7813e32 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/enchant.mcfunction @@ -0,0 +1,7 @@ +item modify entity @s[predicate=infinity_cave:enchantlet/enchantable] weapon.offhand infinity_cave:enchants/tier_5 + +xp add @s -30 levels + +execute at @s run function infinity_cave:mechanics/rc/enchant/tier_5/particles + +playsound minecraft:ui.toast.challenge_complete player @s ~ ~ ~ 0.5 1.5 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/is_enchanted.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/is_enchanted.mcfunction new file mode 100644 index 0000000..d38dc5f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/is_enchanted.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is already enchanted!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/much.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/much.mcfunction new file mode 100644 index 0000000..b65d62b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/much.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are holding more than one item!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enchantable.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enchantable.mcfunction new file mode 100644 index 0000000..43594ad --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enchantable.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is not enchantable!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enough.mcfunction new file mode 100644 index 0000000..63a57f3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/offhand.mcfunction new file mode 100644 index 0000000..40759fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/offhand.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You cannot use this in the offhand!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/particles.mcfunction new file mode 100644 index 0000000..2a2c5ff --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/particles.mcfunction @@ -0,0 +1,85 @@ +particle flash ~ ~0.6 ~ 0 0 0 0 1 force @a +particle totem_of_undying ~0.100 ~0.100 ~1.750 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.413 ~0.100 ~1.701 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.802 ~0.100 ~1.555 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.146 ~0.100 ~1.322 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.426 ~0.100 ~1.015 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.625 ~0.100 ~0.650 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.732 ~0.100 ~0.248 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.742 ~0.100 ~-0.168 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.653 ~0.100 ~-0.574 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.471 ~0.100 ~-0.947 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.206 ~0.100 ~-1.268 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.873 ~0.100 ~-1.516 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.491 ~0.100 ~-1.680 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.081 ~0.100 ~-1.748 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.333 ~0.100 ~-1.718 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.729 ~0.100 ~-1.591 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.084 ~0.100 ~-1.374 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.377 ~0.100 ~-1.080 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.593 ~0.100 ~-0.724 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.719 ~0.100 ~-0.328 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.748 ~0.100 ~0.087 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.678 ~0.100 ~0.496 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.514 ~0.100 ~0.878 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.264 ~0.100 ~1.210 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.943 ~0.100 ~1.474 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.568 ~0.100 ~1.655 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.162 ~0.100 ~1.742 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.254 ~0.100 ~1.732 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.655 ~0.100 ~1.623 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.019 ~0.100 ~1.423 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.326 ~0.100 ~1.142 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.558 ~0.100 ~0.797 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.702 ~0.100 ~0.407 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.750 ~0.100 ~-0.006 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.699 ~0.100 ~-0.418 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.553 ~0.100 ~-0.807 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.319 ~0.100 ~-1.151 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.010 ~0.100 ~-1.429 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.644 ~0.100 ~-1.627 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.243 ~0.100 ~-1.733 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.173 ~0.100 ~-1.741 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.579 ~0.100 ~-1.651 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.952 ~0.100 ~-1.468 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.271 ~0.100 ~-1.202 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.519 ~0.100 ~-0.869 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.681 ~0.100 ~-0.486 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.748 ~0.100 ~-0.076 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.717 ~0.100 ~0.339 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.588 ~0.100 ~0.734 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.370 ~0.100 ~1.088 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.075 ~0.100 ~1.381 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.719 ~0.100 ~1.595 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.323 ~0.100 ~1.720 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.092 ~0.100 ~1.748 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.502 ~0.100 ~1.677 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.883 ~0.100 ~1.511 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.214 ~0.100 ~1.260 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.477 ~0.100 ~0.938 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.657 ~0.100 ~0.563 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.743 ~0.100 ~0.156 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.731 ~0.100 ~-0.259 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.621 ~0.100 ~-0.660 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.419 ~0.100 ~-1.024 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.138 ~0.100 ~-1.329 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.792 ~0.100 ~-1.560 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.402 ~0.100 ~-1.703 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.011 ~0.100 ~-1.750 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.423 ~0.100 ~-1.698 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.812 ~0.100 ~-1.550 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.155 ~0.100 ~-1.315 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.432 ~0.100 ~-1.006 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.629 ~0.100 ~-0.639 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.734 ~0.100 ~-0.237 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.741 ~0.100 ~0.179 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.650 ~0.100 ~0.584 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.465 ~0.100 ~0.957 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.198 ~0.100 ~1.275 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.864 ~0.100 ~1.522 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.480 ~0.100 ~1.683 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.070 ~0.100 ~1.749 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.344 ~0.100 ~1.716 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.739 ~0.100 ~1.586 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.093 ~0.100 ~1.367 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.384 ~0.100 ~1.071 0 1 0 0.2 5 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/activate.mcfunction new file mode 100644 index 0000000..d9e3e40 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/activate.mcfunction @@ -0,0 +1,4 @@ +execute at @s run function infinity_cave:mechanics/rc/fireball/particles + +execute in overworld positioned 0.0 0 0.0 run summon marker ^ ^ ^0.3 {Tags:["ic.fireball"]} +execute anchored eyes positioned ^ ^ ^1 run function infinity_cave:mechanics/rc/fireball/shootfacing \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/entity.mcfunction new file mode 100644 index 0000000..6249221 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/entity.mcfunction @@ -0,0 +1,10 @@ +data modify entity @s power set from entity @e[type=marker,tag=ic.fireball,limit=1] Pos +data modify entity @s Owner set from entity @p[tag=ic.shot_fireball] UUID + +particle minecraft:flame ~ ~ ~ 0.2 0.2 0.2 0.1 50 force + +execute on origin run tag @s remove ic.shot_fireball + +# clean up +tag @s remove ic.fireball +kill @e[tag=ic.fireball] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/particles.mcfunction new file mode 100644 index 0000000..c7c25f0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/particles.mcfunction @@ -0,0 +1,84 @@ +particle flame ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle flame ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle flame ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle flame ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle flame ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle flame ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle flame ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle flame ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle flame ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle flame ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle flame ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle flame ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle flame ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle flame ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle flame ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle flame ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle flame ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle flame ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle flame ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle flame ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle flame ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle flame ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle flame ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle flame ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle flame ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle flame ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle flame ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle flame ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle flame ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle flame ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle flame ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle flame ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle flame ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle flame ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle flame ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle flame ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle flame ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle flame ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle flame ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle flame ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle flame ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle flame ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle flame ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle flame ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle flame ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle flame ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle flame ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle flame ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle flame ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle flame ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle flame ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle flame ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle flame ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle flame ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle flame ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle flame ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle flame ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle flame ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle flame ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle flame ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle flame ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle flame ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle flame ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle flame ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle flame ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle flame ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle flame ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle flame ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle flame ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle flame ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle flame ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle flame ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle flame ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle flame ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle flame ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle flame ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle flame ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle flame ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle flame ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle flame ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle flame ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle flame ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle flame ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle flame ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/shootfacing.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/shootfacing.mcfunction new file mode 100644 index 0000000..8a635b3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/fireball/shootfacing.mcfunction @@ -0,0 +1,5 @@ +playsound minecraft:item.firecharge.use player @a[distance=..10] ~ ~ ~ 0.2 0.6 1 + +summon fireball ~ ~ ~ {HasVisualFire:0b,Glowing:0b,ExplosionPower:2b,Tags:["ic.fireball"],Item:{id:"minecraft:player_head",Count:1b,tag:{SkullOwner:{Id:[I;-549834925,-1196208197,-1888820469,-911071326],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTNlOTdmYWI0NzUzYjc1YmE1YjBjMDM4YmVkMzc3YjE2MmJhMjhiN2E1ZTI5MGFiZmQwMThhNTU4MWFjNTM4OCJ9fX0="}]}}}}} + +execute as @e[type=fireball,tag=ic.fireball,limit=1,sort=nearest] run function infinity_cave:mechanics/rc/fireball/entity \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/activate.mcfunction new file mode 100644 index 0000000..4772269 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/activate.mcfunction @@ -0,0 +1,4 @@ +execute at @s run function infinity_cave:mechanics/rc/ice_spark/particles + +execute in overworld positioned 0.0 0 0.0 run summon marker ^ ^ ^1.2 {Tags:["ic.ice_spark"]} +execute anchored eyes positioned ^ ^ ^1 run function infinity_cave:mechanics/rc/ice_spark/shootfacing \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/entity.mcfunction new file mode 100644 index 0000000..2c7a62f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/entity.mcfunction @@ -0,0 +1,10 @@ +data modify entity @s Motion set from entity @e[type=marker,tag=ic.ice_spark,limit=1] Pos +data modify entity @s Owner set from entity @p[tag=ic.shot_ice_spark] UUID + +particle minecraft:snowflake ~ ~ ~ 0.2 0.2 0.2 0.1 50 force + +execute on origin run tag @s remove ic.shot_ice_spark + +# clean up +tag @s remove ic.ice_spark +kill @e[tag=ic.ice_spark] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/particles.mcfunction new file mode 100644 index 0000000..b8ea6e7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/particles.mcfunction @@ -0,0 +1,84 @@ +particle snowflake ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle snowflake ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle snowflake ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle snowflake ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle snowflake ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle snowflake ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle snowflake ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle snowflake ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle snowflake ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle snowflake ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle snowflake ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle snowflake ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle snowflake ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle snowflake ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle snowflake ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle snowflake ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle snowflake ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle snowflake ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle snowflake ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle snowflake ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle snowflake ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle snowflake ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle snowflake ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle snowflake ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle snowflake ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle snowflake ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle snowflake ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle snowflake ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle snowflake ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle snowflake ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle snowflake ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle snowflake ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle snowflake ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle snowflake ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle snowflake ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle snowflake ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle snowflake ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle snowflake ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle snowflake ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle snowflake ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle snowflake ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle snowflake ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle snowflake ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle snowflake ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle snowflake ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle snowflake ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle snowflake ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle snowflake ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle snowflake ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle snowflake ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle snowflake ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle snowflake ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle snowflake ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle snowflake ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle snowflake ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle snowflake ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle snowflake ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle snowflake ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle snowflake ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle snowflake ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle snowflake ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle snowflake ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle snowflake ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle snowflake ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle snowflake ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle snowflake ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle snowflake ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle snowflake ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle snowflake ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle snowflake ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle snowflake ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle snowflake ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle snowflake ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle snowflake ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle snowflake ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle snowflake ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle snowflake ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle snowflake ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle snowflake ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle snowflake ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle snowflake ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle snowflake ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle snowflake ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle snowflake ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/shootfacing.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/shootfacing.mcfunction new file mode 100644 index 0000000..933078e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/ice_spark/shootfacing.mcfunction @@ -0,0 +1,5 @@ +playsound minecraft:entity.stray.death player @a[distance=..10] ~ ~ ~ 1 1.6 1 + +summon firework_rocket ~ ~ ~ {Life:0,LifeTime:100,ShotAtAngle:1b,Tags:["ic.ice_spark"],Passengers:[{id:"minecraft:potion",Item:{id:"minecraft:lingering_potion",Count:1b,tag:{CustomPotionColor:1703935,custom_potion_effects:[{id:"minecraft:slowness",amplifier:3b,duration:200},{id:"minecraft:weakness",amplifier:1b,duration:200}]}}}],FireworksItem:{id:"firework_rocket",Count:1,tag:{Fireworks:{Explosions:[{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]}]}}}} + +execute as @e[type=firework_rocket,tag=ic.ice_spark,limit=1,sort=nearest] run function infinity_cave:mechanics/rc/ice_spark/entity \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/activate.mcfunction new file mode 100644 index 0000000..5871513 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/activate.mcfunction @@ -0,0 +1,7 @@ +execute at @s run function infinity_cave:mechanics/rc/magic_repair/particles + +execute if entity @s[level=10..,predicate=infinity_cave:any_armor] run function infinity_cave:mechanics/rc/magic_repair/repair + +execute if entity @s[predicate=!infinity_cave:any_armor] run function infinity_cave:mechanics/rc/magic_repair/no_armor + +execute if entity @s[level=..9,predicate=infinity_cave:any_armor] run function infinity_cave:mechanics/rc/magic_repair/not_enough \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/no_armor.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/no_armor.mcfunction new file mode 100644 index 0000000..5d6dc15 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/no_armor.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are wearing no fixable armor!","color":"gray"}] + +loot give @s loot infinity_cave:return/magic_repair \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/not_enough.mcfunction new file mode 100644 index 0000000..6b76693 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/magic_repair \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/particles.mcfunction new file mode 100644 index 0000000..b0d58d9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/particles.mcfunction @@ -0,0 +1,84 @@ +particle portal ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle portal ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle portal ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle portal ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle portal ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle portal ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle portal ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle portal ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle portal ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle portal ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle portal ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle portal ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle portal ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle portal ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle portal ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle portal ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle portal ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle portal ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle portal ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle portal ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle portal ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle portal ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle portal ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle portal ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle portal ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle portal ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle portal ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle portal ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle portal ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle portal ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle portal ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle portal ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle portal ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle portal ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle portal ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle portal ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle portal ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle portal ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle portal ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle portal ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle portal ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle portal ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle portal ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle portal ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle portal ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle portal ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle portal ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle portal ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle portal ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle portal ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle portal ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle portal ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle portal ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle portal ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle portal ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle portal ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle portal ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle portal ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle portal ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle portal ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle portal ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle portal ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle portal ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle portal ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle portal ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle portal ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle portal ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle portal ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle portal ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle portal ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle portal ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle portal ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle portal ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle portal ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle portal ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle portal ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle portal ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle portal ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle portal ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle portal ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle portal ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle portal ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/repair.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/repair.mcfunction new file mode 100644 index 0000000..c80bfe1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/magic_repair/repair.mcfunction @@ -0,0 +1,8 @@ +item modify entity @s armor.head infinity_cave:full_fix +item modify entity @s armor.chest infinity_cave:full_fix +item modify entity @s armor.legs infinity_cave:full_fix +item modify entity @s armor.feet infinity_cave:full_fix + +xp add @s -10 levels + +playsound block.anvil.use player @s ~ ~ ~ 0.2 2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_enchant.mcfunction new file mode 100644 index 0000000..0729341 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_enchant.mcfunction @@ -0,0 +1,9 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_enchant] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/enchant/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_enchant] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/enchant/activate + +advancement revoke @s only infinity_cave:mechanics/rc/rc_enchant \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_fireball.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_fireball.mcfunction new file mode 100644 index 0000000..076f036 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_fireball.mcfunction @@ -0,0 +1,9 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_fireball] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/fireball/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_fireball] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/fireball/activate + +advancement revoke @s only infinity_cave:mechanics/rc/rc_fireball \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_ice_spark.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_ice_spark.mcfunction new file mode 100644 index 0000000..ccab624 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_ice_spark.mcfunction @@ -0,0 +1,9 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_ice_spark] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/ice_spark/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_ice_spark] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/ice_spark/activate + +advancement revoke @s only infinity_cave:mechanics/rc/rc_ice_spark \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_magic_repair.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_magic_repair.mcfunction new file mode 100644 index 0000000..7cabd9e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_magic_repair.mcfunction @@ -0,0 +1,9 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_magic_repair] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/magic_repair/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_magic_repair] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/magic_repair/activate + +advancement revoke @s only infinity_cave:mechanics/rc/rc_magic_repair \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_spawnlet.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_spawnlet.mcfunction new file mode 100644 index 0000000..4bc06ad --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_spawnlet.mcfunction @@ -0,0 +1,9 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_spawnlet] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/spawnlet/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_spawnlet] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/spawnlet/activate + +advancement revoke @s only infinity_cave:mechanics/rc/rc_spawnlet \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_teleport.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_teleport.mcfunction new file mode 100644 index 0000000..decde5e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/rc_teleport.mcfunction @@ -0,0 +1,7 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_teleport] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/teleport/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_teleport] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/teleport/activate \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/activate.mcfunction new file mode 100644 index 0000000..2f7aae8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/activate.mcfunction @@ -0,0 +1,5 @@ +scoreboard players set #ic.hit ic.int 0 + +execute at @s run function infinity_cave:mechanics/rc/teleport/particles + +execute anchored eyes positioned ^ ^ ^ anchored feet run function infinity_cave:mechanics/rc/teleport/ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/hit_block.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/hit_block.mcfunction new file mode 100644 index 0000000..3b64a1b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/hit_block.mcfunction @@ -0,0 +1,11 @@ +scoreboard players set #ic.hit ic.int 1 + +tp ~ ~1 ~ + +particle portal ~ ~ ~ 0 0 0 0.4 10 force + +playsound entity.enderman.teleport player @a[distance=..15] ~ ~ ~ 0.1 2 1 + +advancement revoke @s only infinity_cave:mechanics/rc/rc_teleport + +scoreboard players set #ic.distance ic.int 0 diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/particles.mcfunction new file mode 100644 index 0000000..b0d58d9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/particles.mcfunction @@ -0,0 +1,84 @@ +particle portal ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle portal ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle portal ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle portal ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle portal ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle portal ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle portal ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle portal ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle portal ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle portal ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle portal ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle portal ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle portal ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle portal ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle portal ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle portal ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle portal ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle portal ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle portal ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle portal ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle portal ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle portal ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle portal ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle portal ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle portal ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle portal ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle portal ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle portal ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle portal ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle portal ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle portal ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle portal ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle portal ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle portal ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle portal ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle portal ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle portal ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle portal ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle portal ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle portal ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle portal ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle portal ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle portal ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle portal ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle portal ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle portal ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle portal ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle portal ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle portal ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle portal ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle portal ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle portal ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle portal ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle portal ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle portal ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle portal ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle portal ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle portal ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle portal ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle portal ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle portal ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle portal ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle portal ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle portal ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle portal ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle portal ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle portal ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle portal ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle portal ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle portal ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle portal ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle portal ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle portal ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle portal ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle portal ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle portal ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle portal ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle portal ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle portal ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle portal ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle portal ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle portal ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/ray.mcfunction new file mode 100644 index 0000000..42f5b4e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/rc/teleport/ray.mcfunction @@ -0,0 +1,7 @@ +execute if block ~ ~ ~ #infinity_cave:all_but_air run function infinity_cave:mechanics/rc/teleport/hit_block + +scoreboard players add #ic.distance ic.int 1 + +execute if score #ic.hit ic.int matches 0 if score #ic.distance ic.int matches ..200 positioned ^ ^ ^0.1 run function infinity_cave:mechanics/rc/teleport/ray + +execute if score #ic.distance ic.int matches 201.. run function infinity_cave:mechanics/rc/teleport/hit_block \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/safety_banner.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/safety_banner.mcfunction new file mode 100644 index 0000000..51bb955 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/safety_banner.mcfunction @@ -0,0 +1,7 @@ +playsound block.respawn_anchor.deplete block @a[distance=..50] ~ ~ ~ 0.5 2 1 + +tellraw @a[distance=..50] ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" Cleared mob-spawn area!","color":"green"}] + +fill ~-50 ~-7 ~50 ~50 ~10 ~-50 air replace void_air + +advancement revoke @s only infinity_cave:mechanics/safety_banner \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/toxic_water.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/toxic_water.mcfunction new file mode 100644 index 0000000..8b74443 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/toxic_water.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/enter_toxic_water + +effect give @s poison 3 1 true \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weakness_cleanse.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weakness_cleanse.mcfunction new file mode 100644 index 0000000..aac1f9e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weakness_cleanse.mcfunction @@ -0,0 +1,7 @@ +effect clear @s weakness + +clear @s popped_chorus_fruit{ic:weakness_cleanse} 1 + +playsound particle.soul_escape player @s ~ ~ ~ 1 1 1 + +advancement revoke @s only infinity_cave:mechanics/weakness_cleanse \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/durability.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/durability.mcfunction new file mode 100644 index 0000000..9262e72 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/durability.mcfunction @@ -0,0 +1,4 @@ +item modify entity @s[predicate=!infinity_cave:weapons/acid_shield_main,predicate=infinity_cave:weapons/acid_shield_off] weapon.offhand infinity_cave:fix +item modify entity @s[predicate=infinity_cave:weapons/acid_shield_main] weapon.mainhand infinity_cave:fix + +advancement revoke @s only infinity_cave:mechanics/weapons/acid_shield/durability \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_block.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_block.mcfunction new file mode 100644 index 0000000..bd6f56e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_block.mcfunction @@ -0,0 +1 @@ +execute as @e[type=#infinity_cave:all_living,tag=!ic.acid_shield,distance=..3] run function infinity_cave:mechanics/weapons/acid_shield/hit_entity \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_entity.mcfunction new file mode 100644 index 0000000..1f59eb5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_entity.mcfunction @@ -0,0 +1,9 @@ +scoreboard players set #ic.hit ic.int 1 + +particle minecraft:sneeze ~ ~ ~ 1.5 1.5 1.5 0 300 force + +damage @s 20 infinity_cave:magic_bypass by @p[tag=ic.acid_shield] + +effect give @s poison 10 1 true + +effect give @s weakness 10 1 true \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/poison_immune.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/poison_immune.mcfunction new file mode 100644 index 0000000..2e47428 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/poison_immune.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/acid_shield/poison_immune + +effect clear @s poison \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/ray.mcfunction new file mode 100644 index 0000000..4cb2e39 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/ray.mcfunction @@ -0,0 +1,9 @@ +particle sneeze ~ ~ ~ 0.25 0.25 0.25 0 5 force + +execute if score #ic.hit ic.int matches 0 positioned ~-0.05 ~-0.05 ~-0.05 as @e[type=#infinity_cave:all_living,tag=!ic.acid_shield,distance=..2] run function infinity_cave:mechanics/weapons/acid_shield/hit_entity + +execute if block ~ ~ ~ #infinity_cave:all_but_air run function infinity_cave:mechanics/weapons/acid_shield/hit_block +scoreboard players add #ic.distance ic.int 1 + + +execute if score #ic.hit ic.int matches 0 if score #ic.distance ic.int matches ..100 positioned ^ ^ ^0.1 run function infinity_cave:mechanics/weapons/acid_shield/ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/start_ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/start_ray.mcfunction new file mode 100644 index 0000000..b4b8440 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/acid_shield/start_ray.mcfunction @@ -0,0 +1,12 @@ +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.2 0 1 + +tag @s add ic.acid_shield +scoreboard players set #ic.hit ic.int 0 +scoreboard players set #ic.distance ic.int 0 + +execute anchored eyes positioned ^ ^ ^ anchored feet run function infinity_cave:mechanics/weapons/acid_shield/ray + +tag @s remove ic.acid_shield + +advancement revoke @s only infinity_cave:mechanics/weapons/acid_shield/block + diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/half.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/half.mcfunction new file mode 100644 index 0000000..8dfa591 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/half.mcfunction @@ -0,0 +1,6 @@ +damage @s 10 infinity_cave:magic_bypass by @a[scores={ic.amethyst_blade=0},distance=..5,limit=1] + +particle witch ~ ~0.8 ~ 0.66 0.99 0.66 10 30 force + +playsound minecraft:block.amethyst_block.resonate player @a[distance=..15] ~ ~ ~ 0.6 1.5 1 + diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/hit_match.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/hit_match.mcfunction new file mode 100644 index 0000000..b25c8c0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/hit_match.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/amethyst_blade/half + +scoreboard players set @s ic.amethyst_blade 0 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/main.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/main.mcfunction new file mode 100644 index 0000000..932bd15 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/main.mcfunction @@ -0,0 +1,9 @@ +execute if score @s ic.const >= @s ic.health run function infinity_cave:mechanics/weapons/amethyst_blade/half + +#execute if score @s ic.const >= @s ic.health run return 0 + +execute store result score @s ic.const run attribute @s minecraft:generic.max_health get + +execute store result score @s ic.health run data get entity @s Health + +scoreboard players operation @s ic.const /= 2 ic.const \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/distance.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/distance.mcfunction new file mode 100644 index 0000000..35b81eb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/distance.mcfunction @@ -0,0 +1,3 @@ +damage @s 15 infinity_cave:magic_bypass by @a[scores={ic.bastion_piercer=0},distance=..7,limit=1] + +particle crit ~ ~0.8 ~ 0.66 0.99 0.66 0.1 30 force diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/hit_match.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/hit_match.mcfunction new file mode 100644 index 0000000..2b604be --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/hit_match.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/bastion_piercer/distance + +scoreboard players set @s ic.bastion_piercer 0 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/fire.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/fire.mcfunction new file mode 100644 index 0000000..37f6501 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/fire.mcfunction @@ -0,0 +1,9 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/icicle_crossbow/shot + +execute as @e[type=#infinity_cave:projectiles,tag=!icicle_projectile,distance=..2,limit=3] run function infinity_cave:mechanics/weapons/icicle_crossbow/projectile + +execute anchored eyes run particle snowflake ^ ^ ^1.5 0.1 0.1 0.1 0 10 force + +playsound entity.stray.death player @a[distance=..15] ~ ~ ~ 0.5 2 1 + +execute store result score @s ic.uuid run data get entity @s UUID[0] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/projectile.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/projectile.mcfunction new file mode 100644 index 0000000..9706eb2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/projectile.mcfunction @@ -0,0 +1,7 @@ +tag @s add icicle_projectile + +execute store result entity @s Motion[0] double 0.001 run data get entity @s Motion[0] 3000 +execute store result entity @s Motion[1] double 0.001 run data get entity @s Motion[1] 3000 +execute store result entity @s Motion[2] double 0.001 run data get entity @s Motion[2] 3000 + +data merge entity @s {Color:917503,SoundEvent:"entity.zombie.attack_iron_door"} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit.mcfunction new file mode 100644 index 0000000..d2572d2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/molten_hammer/hit + +item modify entity @s[gamemode=!creative,predicate=infinity_cave:percent/00625] weapon.mainhand infinity_cave:durability \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit_block.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit_block.mcfunction new file mode 100644 index 0000000..67ca9cd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit_block.mcfunction @@ -0,0 +1,9 @@ +scoreboard players set #ic.hit ic.int 1 + +particle explosion ~ ~ ~ 0 0 0 0 1 force +particle lava ~ ~ ~ 0 0 0 0 1 force +particle flame ~ ~ ~ 0.2 0.2 0.2 0.1 10 force + +execute as @e[type=#infinity_cave:all_living,tag=!ic.molten_hammer,distance=..3] run damage @s 8 infinity_cave:magic_bypass by @p[tag=ic.molten_hammer] from @p[tag=ic.molten_hammer] + +playsound entity.dragon_fireball.explode player @a[distance=..15] ~ ~ ~ 0.1 2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/ray.mcfunction new file mode 100644 index 0000000..249ccaf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/ray.mcfunction @@ -0,0 +1,6 @@ +execute if block ~ ~ ~ #infinity_cave:all_but_air run function infinity_cave:mechanics/weapons/molten_hammer/hit_block +execute if block ~ ~ ~ suspicious_gravel run setblock ~ ~ ~ gravel +execute if block ~ ~ ~ suspicious_sand run setblock ~ ~ ~ sand +scoreboard players add #ic.distance ic.int 1 + +execute if score #ic.hit ic.int matches 0 if score #ic.distance ic.int matches ..10 positioned ^ ^ ^0.6 run function infinity_cave:mechanics/weapons/molten_hammer/ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/start_ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/start_ray.mcfunction new file mode 100644 index 0000000..23d63fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/molten_hammer/start_ray.mcfunction @@ -0,0 +1,14 @@ +tag @s add ic.molten_hammer +scoreboard players set #ic.hit ic.int 0 +scoreboard players set #ic.distance ic.int 0 + +execute anchored eyes positioned ^ ^ ^ anchored feet run function infinity_cave:mechanics/weapons/molten_hammer/ray + +tag @s remove ic.molten_hammer + +scoreboard players set @s[scores={ic.molten_hammer=6..}] ic.molten_hammer 0 + +item modify entity @s[gamemode=!creative,predicate=infinity_cave:weapons/molten_off] weapon.offhand infinity_cave:durability +item modify entity @s[gamemode=!creative,predicate=infinity_cave:weapons/molten_main] weapon.mainhand infinity_cave:durability + +advancement revoke @s only infinity_cave:mechanics/weapons/molten_hammer/use \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/activate.mcfunction new file mode 100644 index 0000000..3b64069 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/activate.mcfunction @@ -0,0 +1,11 @@ +execute store result score #sonic_const ic.int run scoreboard players get @s ic.sonic + +scoreboard players set #rip_check ic.int 0 + +scoreboard players set @s ic.sonic 200 + +execute if score #sonic_const ic.int matches ..160 unless entity @e[type=#infinity_cave:all_living,distance=0.8..5,limit=1] anchored eyes run function infinity_cave:mechanics/weapons/sonic_bow/match + +execute if score #rip_check ic.int matches 1 run return 0 + +execute if score #sonic_const ic.int matches ..160 as @e[type=#infinity_cave:all_living,distance=0.8..5,limit=1] at @s run function infinity_cave:mechanics/weapons/sonic_bow/explosion \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge.mcfunction new file mode 100644 index 0000000..bc5ba08 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge.mcfunction @@ -0,0 +1,20 @@ +advancement revoke @s[scores={ic.sonic_charge=0}] only infinity_cave:mechanics/weapons/sonic_bow/tick + +scoreboard players set @s[scores={ic.sonic=200..}] ic.sonic 200 + +scoreboard players remove @s ic.sonic 2 + +playsound entity.warden.listening player @a[distance=..15] ~ ~ ~ 0.05 2 1 +particle minecraft:sculk_soul ~ ~1 ~ 0.25 0.25 0.25 0.1 1 force + +execute if entity @s[scores={ic.sonic=121..160}] run function infinity_cave:mechanics/weapons/sonic_bow/charge_1 +execute if entity @s[scores={ic.sonic=81..120}] run function infinity_cave:mechanics/weapons/sonic_bow/charge_2 +execute if entity @s[scores={ic.sonic=41..80}] run function infinity_cave:mechanics/weapons/sonic_bow/charge_3 +execute if entity @s[scores={ic.sonic=1..40}] run function infinity_cave:mechanics/weapons/sonic_bow/charge_4 +execute if entity @s[scores={ic.sonic=..0}] run function infinity_cave:mechanics/weapons/sonic_bow/charge_5 + +scoreboard players set @s ic.sonic_charge 2 + +advancement revoke @s only infinity_cave:mechanics/weapons/sonic_bow/charge + + diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_1.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_1.mcfunction new file mode 100644 index 0000000..40ec8a4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_1.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.sonic=160}] run playsound minecraft:block.sculk_sensor.clicking player @a[distance=..15] ~ ~ ~ 1 0.5 1 +execute if entity @s[scores={ic.sonic=160}] run particle minecraft:sculk_charge 0 ~ ~1 ~ 0.1 0.1 0.1 0.25 50 force +particle minecraft:sculk_charge_pop ~ ~0.2 ~ 0.2 0.2 0.2 0 4 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_2.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_2.mcfunction new file mode 100644 index 0000000..bed7fd3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_2.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.sonic=120}] run playsound minecraft:block.sculk_sensor.clicking player @a[distance=..15] ~ ~ ~ 1 0.6 1 +execute if entity @s[scores={ic.sonic=120}] run particle minecraft:sculk_charge 0 ~ ~1 ~ 0.2 0.2 0.2 0.5 55 force +particle minecraft:sculk_charge_pop ~ ~0.2 ~ 0.3 0.3 0.3 0 5 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_3.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_3.mcfunction new file mode 100644 index 0000000..3bed9fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_3.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.sonic=80}] run playsound minecraft:block.sculk_sensor.clicking player @a[distance=..15] ~ ~ ~ 1 0.7 1 +execute if entity @s[scores={ic.sonic=80}] run particle minecraft:sculk_charge 0 ~ ~1 ~ 0.3 0.3 0.3 0.75 60 force +particle minecraft:sculk_charge_pop ~ ~0.2 ~ 0.3 0.3 0.3 0 7 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_4.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_4.mcfunction new file mode 100644 index 0000000..ed5837e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_4.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.sonic=40}] run playsound minecraft:block.sculk_sensor.clicking player @a[distance=..15] ~ ~ ~ 1 0.8 1 +execute if entity @s[scores={ic.sonic=40}] run particle minecraft:sculk_charge 0 ~ ~1 ~ 0.4 0.4 0.4 1 70 force +particle minecraft:sculk_charge_pop ~ ~0.2 ~ 0.4 0.4 0.4 0 10 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_5.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_5.mcfunction new file mode 100644 index 0000000..fff98bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_5.mcfunction @@ -0,0 +1,4 @@ +playsound minecraft:block.sculk_sensor.clicking player @a[distance=..15] ~ ~ ~ 0.1 1 1 +execute if entity @s[scores={ic.sonic=0}] run playsound minecraft:entity.warden.roar player @a[distance=..15] ~ ~ ~ 1 2 1 +execute if entity @s[scores={ic.sonic=0}] run particle flash ~ ~ ~ 0 0 0 0 1 force +particle minecraft:sculk_charge_pop ~ ~0.2 ~ 0.5 0.5 0.5 0 12 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/1.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/1.mcfunction new file mode 100644 index 0000000..23eaffd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/1.mcfunction @@ -0,0 +1,7 @@ +execute store result entity @s Motion[0] double 0.0015 run data get entity @s Motion[0] 1000 +execute store result entity @s Motion[1] double 0.0015 run data get entity @s Motion[1] 1000 +execute store result entity @s Motion[2] double 0.0015 run data get entity @s Motion[2] 1000 + +data merge entity @s {SoundEvent:"entity.warden.attack_impact"} + +playsound entity.drowned.shoot player @a[distance=..15] ~ ~ ~ 1 0.5 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/2.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/2.mcfunction new file mode 100644 index 0000000..09ca542 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/2.mcfunction @@ -0,0 +1,7 @@ +execute store result entity @s Motion[0] double 0.002 run data get entity @s Motion[0] 1000 +execute store result entity @s Motion[1] double 0.002 run data get entity @s Motion[1] 1000 +execute store result entity @s Motion[2] double 0.002 run data get entity @s Motion[2] 1000 + +data merge entity @s {PierceLevel:1b,SoundEvent:"entity.warden.attack_impact"} + +playsound entity.drowned.shoot player @a[distance=..15] ~ ~ ~ 1 0.8 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/3.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/3.mcfunction new file mode 100644 index 0000000..76ed1ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/3.mcfunction @@ -0,0 +1,7 @@ +execute store result entity @s Motion[0] double 0.002 run data get entity @s Motion[0] 1250 +execute store result entity @s Motion[1] double 0.002 run data get entity @s Motion[1] 1250 +execute store result entity @s Motion[2] double 0.002 run data get entity @s Motion[2] 1250 + +data merge entity @s {PierceLevel:2b,SoundEvent:"entity.warden.attack_impact"} + +playsound entity.drowned.shoot player @a[distance=..25] ~ ~ ~ 1 1 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/4.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/4.mcfunction new file mode 100644 index 0000000..099078a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/4.mcfunction @@ -0,0 +1,7 @@ +execute store result entity @s Motion[0] double 0.002 run data get entity @s Motion[0] 1500 +execute store result entity @s Motion[1] double 0.002 run data get entity @s Motion[1] 1500 +execute store result entity @s Motion[2] double 0.002 run data get entity @s Motion[2] 1500 + +data merge entity @s {PierceLevel:3b,SoundEvent:"entity.warden.attack_impact"} + +playsound entity.drowned.shoot player @a[distance=..25] ~ ~ ~ 1 1.2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/5.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/5.mcfunction new file mode 100644 index 0000000..3a87573 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/5.mcfunction @@ -0,0 +1,8 @@ +execute store result entity @s Motion[0] double 0.00225 run data get entity @s Motion[0] 1500 +execute store result entity @s Motion[1] double 0.00225 run data get entity @s Motion[1] 1500 +execute store result entity @s Motion[2] double 0.00225 run data get entity @s Motion[2] 1500 + +data merge entity @s {PierceLevel:10b,SoundEvent:"entity.warden.attack_impact"} + +playsound entity.drowned.shoot player @a[distance=..50] ~ ~ ~ 1 1.6 1 +playsound entity.warden.death player @a[distance=..50] ~ ~ ~ 1 2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion.mcfunction new file mode 100644 index 0000000..d7038f1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion.mcfunction @@ -0,0 +1,5 @@ +execute if score #sonic_const ic.int matches 121..160 run function infinity_cave:mechanics/weapons/sonic_bow/explosion/1 +execute if score #sonic_const ic.int matches 81..120 run function infinity_cave:mechanics/weapons/sonic_bow/explosion/2 +execute if score #sonic_const ic.int matches 41..80 run function infinity_cave:mechanics/weapons/sonic_bow/explosion/3 +execute if score #sonic_const ic.int matches 1..40 run function infinity_cave:mechanics/weapons/sonic_bow/explosion/4 +execute if score #sonic_const ic.int matches ..0 run function infinity_cave:mechanics/weapons/sonic_bow/explosion/5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/1.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/1.mcfunction new file mode 100644 index 0000000..5abb978 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/1.mcfunction @@ -0,0 +1,7 @@ +particle minecraft:explosion_emitter + +particle sonic_boom ~ ~ ~ 4 4 4 0.4 10 force + +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.6 0.5 1 + +damage @s 20 infinity_cave:magic_bypass at ~ ~ ~ \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/2.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/2.mcfunction new file mode 100644 index 0000000..7c0b55b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/2.mcfunction @@ -0,0 +1,7 @@ +particle minecraft:explosion_emitter + +particle sonic_boom ~ ~ ~ 4 4 4 0.4 20 force + +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.6 0.5 1 + +damage @s 25 infinity_cave:magic_bypass at ~ ~ ~ \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/3.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/3.mcfunction new file mode 100644 index 0000000..437b495 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/3.mcfunction @@ -0,0 +1,7 @@ +particle minecraft:explosion_emitter + +particle sonic_boom ~ ~ ~ 4 4 4 0.4 30 force + +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.6 0.5 1 + +damage @s 30 infinity_cave:magic_bypass at ~ ~ ~ \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/4.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/4.mcfunction new file mode 100644 index 0000000..78cea0f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/4.mcfunction @@ -0,0 +1,7 @@ +particle minecraft:explosion_emitter + +particle sonic_boom ~ ~ ~ 4 4 4 0.4 50 force + +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.6 0.5 1 + +damage @s 40 infinity_cave:magic_bypass at ~ ~ ~ \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/5.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/5.mcfunction new file mode 100644 index 0000000..e6a9154 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/5.mcfunction @@ -0,0 +1,7 @@ +particle minecraft:explosion_emitter + +particle sonic_boom ~ ~ ~ 4 4 4 0.4 100 force + +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.6 0.5 1 + +damage @s 50 infinity_cave:magic_bypass at ~ ~ ~ \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/match.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/match.mcfunction new file mode 100644 index 0000000..465c65e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/match.mcfunction @@ -0,0 +1,3 @@ +execute as @e[type=arrow,nbt={inGround:0b},distance=..5] at @s run function infinity_cave:mechanics/weapons/sonic_bow/uuid + +scoreboard players set #rip_check ic.int 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/shoot.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/shoot.mcfunction new file mode 100644 index 0000000..7469663 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/shoot.mcfunction @@ -0,0 +1,5 @@ +execute if score #sonic_const ic.int matches 121..160 run function infinity_cave:mechanics/weapons/sonic_bow/damage/1 +execute if score #sonic_const ic.int matches 81..120 run function infinity_cave:mechanics/weapons/sonic_bow/damage/2 +execute if score #sonic_const ic.int matches 41..80 run function infinity_cave:mechanics/weapons/sonic_bow/damage/3 +execute if score #sonic_const ic.int matches 1..40 run function infinity_cave:mechanics/weapons/sonic_bow/damage/4 +execute if score #sonic_const ic.int matches ..0 run function infinity_cave:mechanics/weapons/sonic_bow/damage/5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/tick.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/tick.mcfunction new file mode 100644 index 0000000..d27b44c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/tick.mcfunction @@ -0,0 +1,5 @@ +scoreboard players remove @s[scores={ic.sonic_charge=1..}] ic.sonic_charge 1 + +execute if entity @s[scores={ic.sonic_charge=0}] run function infinity_cave:mechanics/weapons/sonic_bow/activate + +advancement revoke @s[scores={ic.sonic_charge=1..}] only infinity_cave:mechanics/weapons/sonic_bow/tick \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/uuid.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/uuid.mcfunction new file mode 100644 index 0000000..fb41a87 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/sonic_bow/uuid.mcfunction @@ -0,0 +1,8 @@ +data modify storage ic:projectile player set from entity @p UUID +data modify storage ic:projectile projectile set from entity @s Owner + +data modify storage ic:projectile ic.int set from storage ic:projectile player +execute store success score $success ic.int run data modify storage ic:projectile ic.int set from storage ic:projectile projectile +execute if score $success ic.int matches 0 run function infinity_cave:mechanics/weapons/sonic_bow/shoot + +tag @s add ic.compared \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/hit_match.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/hit_match.mcfunction new file mode 100644 index 0000000..55bf6f0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/hit_match.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/steel_battleaxe/shield + +scoreboard players set @s ic.steel_battleaxe 0 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/shield.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/shield.mcfunction new file mode 100644 index 0000000..c437bd5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/shield.mcfunction @@ -0,0 +1,4 @@ +damage @s 15 infinity_cave:magic_bypass by @a[scores={ic.steel_battleaxe=0},distance=..5,limit=1] + +particle smoke ~ ~0.8 ~ 0.66 0.99 0.66 0.1 30 force + diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge.mcfunction new file mode 100644 index 0000000..05b1fcc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge.mcfunction @@ -0,0 +1,22 @@ +advancement revoke @s[scores={ic.torpedo_charge=0}] only infinity_cave:mechanics/weapons/torpedo_harpoon/tick + +scoreboard players set @s[scores={ic.torpedo=200..}] ic.damage_blocked 0 + +scoreboard players set @s[scores={ic.torpedo=200..}] ic.torpedo 200 + +scoreboard players remove @s ic.torpedo 2 + +playsound entity.warden.heartbeat player @a[distance=..15] ~ ~ ~ 0.1 2 1 +particle minecraft:electric_spark ~ ~1 ~ 0.5 0.5 0.5 0.7 2 force + +execute if entity @s[scores={ic.torpedo=121..160}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/charge_1 +execute if entity @s[scores={ic.torpedo=81..120}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/charge_2 +execute if entity @s[scores={ic.torpedo=41..80}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/charge_3 +execute if entity @s[scores={ic.torpedo=1..40}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/charge_4 +execute if entity @s[scores={ic.torpedo=..0}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/charge_5 + +scoreboard players set @s ic.torpedo_charge 2 + +advancement revoke @s only infinity_cave:mechanics/weapons/torpedo_harpoon/charge + + diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_1.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_1.mcfunction new file mode 100644 index 0000000..c8ff0f7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_1.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.torpedo=159}] run playsound minecraft:entity.evoker.cast_spell player @a[distance=..15] ~ ~ ~ 1 1.1 1 +execute if entity @s[scores={ic.torpedo=159}] run particle minecraft:firework ~ ~1 ~ 0.1 0.1 0.1 0.25 50 force +particle minecraft:electric_spark ~ ~1 ~ 0.3 0.3 0.3 0.5 4 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_2.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_2.mcfunction new file mode 100644 index 0000000..6350f49 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_2.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.torpedo=119}] run playsound minecraft:entity.evoker.cast_spell player @a[distance=..15] ~ ~ ~ 1 1.25 1 +execute if entity @s[scores={ic.torpedo=119}] run particle minecraft:firework ~ ~1 ~ 0.2 0.2 0.2 0.5 55 force +particle minecraft:electric_spark ~ ~1 ~ 0.3 0.3 0.3 1 5 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_3.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_3.mcfunction new file mode 100644 index 0000000..df8bc0d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_3.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.torpedo=79}] run playsound minecraft:entity.evoker.cast_spell player @a[distance=..15] ~ ~ ~ 1 1.5 1 +execute if entity @s[scores={ic.torpedo=79}] run particle minecraft:firework ~ ~1 ~ 0.3 0.3 0.3 0.75 60 force +particle minecraft:electric_spark ~ ~1 ~ 0.35 0.35 0.35 2 8 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_4.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_4.mcfunction new file mode 100644 index 0000000..80b2e4a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_4.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.torpedo=39}] run playsound minecraft:entity.evoker.cast_spell player @a[distance=..15] ~ ~ ~ 1 1.8 1 +execute if entity @s[scores={ic.torpedo=39}] run particle minecraft:firework ~ ~1 ~ 0.4 0.4 0.4 1 70 force +particle minecraft:electric_spark ~ ~1 ~ 0.4 0.4 0.4 3 10 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_5.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_5.mcfunction new file mode 100644 index 0000000..14493d5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_5.mcfunction @@ -0,0 +1,5 @@ +execute if entity @s[scores={ic.torpedo=-1}] run playsound entity.lightning_bolt.thunder player @a[distance=..15] ~ ~ ~ 1 1.6 1 +execute if entity @s[scores={ic.torpedo=-1}] run playsound minecraft:entity.evoker.cast_spell player @a[distance=..15] ~ ~ ~ 1 2 1 +execute if entity @s[scores={ic.torpedo=-1}] run particle flash ~ ~ ~ 0 0 0 0 1 force +particle minecraft:electric_spark ~ ~1 ~ 0.5 0.5 0.5 4 15 force +particle minecraft:firework ~ ~1 ~ 0.25 0.25 0.25 0.5 4 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/1.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/1.mcfunction new file mode 100644 index 0000000..58e45f4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/1.mcfunction @@ -0,0 +1,2 @@ +particle minecraft:firework ~ ~ ~ 1.5 1.5 1.5 0 150 force +damage @s 20 infinity_cave:magic_bypass by @p[tag=ic.torpedo_harpoon] from @p[tag=ic.torpedo_harpoon] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/2.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/2.mcfunction new file mode 100644 index 0000000..ca1375e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/2.mcfunction @@ -0,0 +1,2 @@ +particle minecraft:firework ~ ~ ~ 1.75 1.75 1.75 0 200 force +damage @s 25 infinity_cave:magic_bypass by @p[tag=ic.torpedo_harpoon] from @p[tag=ic.torpedo_harpoon] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/3.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/3.mcfunction new file mode 100644 index 0000000..482c84c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/3.mcfunction @@ -0,0 +1,2 @@ +particle minecraft:firework ~ ~ ~ 2 2 2 0 250 force +damage @s 30 infinity_cave:magic_bypass by @p[tag=ic.torpedo_harpoon] from @p[tag=ic.torpedo_harpoon] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/4.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/4.mcfunction new file mode 100644 index 0000000..579239f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/4.mcfunction @@ -0,0 +1,2 @@ +particle minecraft:firework ~ ~ ~ 2.5 2.5 2.5 0.05 300 force +damage @s 40 infinity_cave:magic_bypass by @p[tag=ic.torpedo_harpoon] from @p[tag=ic.torpedo_harpoon] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/5.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/5.mcfunction new file mode 100644 index 0000000..ec19c71 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/5.mcfunction @@ -0,0 +1,3 @@ +particle minecraft:firework ~ ~ ~ 3 3 3 0.1 400 force +particle minecraft:sculk_charge 0 ~ ~ ~ 0 0 0 0.6 20 force +damage @s 50 infinity_cave:magic_bypass by @p[tag=ic.torpedo_harpoon] from @p[tag=ic.torpedo_harpoon] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/durability.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/durability.mcfunction new file mode 100644 index 0000000..39b75f8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/durability.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/torpedo_harpoon/hit + +item modify entity @s[gamemode=!creative,predicate=infinity_cave:percent/00625] weapon.mainhand infinity_cave:durability_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/hit.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/hit.mcfunction new file mode 100644 index 0000000..d50b771 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/hit.mcfunction @@ -0,0 +1,7 @@ +execute if score #torpedo_const ic.int matches 121..160 run execute as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,distance=..4] run function infinity_cave:mechanics/weapons/torpedo_harpoon/damage/1 +execute if score #torpedo_const ic.int matches 81..120 run execute as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,distance=..5] run function infinity_cave:mechanics/weapons/torpedo_harpoon/damage/2 +execute if score #torpedo_const ic.int matches 41..80 run execute as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,distance=..6] run function infinity_cave:mechanics/weapons/torpedo_harpoon/damage/3 +execute if score #torpedo_const ic.int matches 1..40 run execute as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,distance=..7.5] run function infinity_cave:mechanics/weapons/torpedo_harpoon/damage/4 +execute if score #torpedo_const ic.int matches ..0 run execute as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,distance=..10] run function infinity_cave:mechanics/weapons/torpedo_harpoon/damage/5 + +scoreboard players set #ic.hit ic.int 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/launch.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/launch.mcfunction new file mode 100644 index 0000000..20fc105 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/launch.mcfunction @@ -0,0 +1,5 @@ +execute store result score #torpedo_const ic.int run scoreboard players get @s ic.torpedo + +scoreboard players set @s ic.torpedo 200 + +execute if score #torpedo_const ic.int matches ..159 anchored eyes run function infinity_cave:mechanics/weapons/torpedo_harpoon/start_ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/ray.mcfunction new file mode 100644 index 0000000..46eb7f7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/ray.mcfunction @@ -0,0 +1,14 @@ +execute if score #torpedo_const ic.int matches 121..160 run particle firework ~ ~ ~ 0 0 0 0.05 1 force +execute if score #torpedo_const ic.int matches 81..120 run particle firework ~ ~ ~ 0 0 0 0.075 2 force +execute if score #torpedo_const ic.int matches 41..80 run particle firework ~ ~ ~ 0 0 0 0.1 3 force +execute if score #torpedo_const ic.int matches 1..40 run particle firework ~ ~ ~ 0 0 0 0.125 4 force +execute if score #torpedo_const ic.int matches ..0 run particle firework ~ ~ ~ 0 0 0 0.15 5 force +particle minecraft:sculk_charge 0 ~ ~ ~ 0 0 0 0.6 2 force + +execute if score #ic.hit ic.int matches 0 positioned ~-0.05 ~-0.05 ~-0.05 as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,dx=0,sort=nearest] run function infinity_cave:mechanics/weapons/torpedo_harpoon/hit + +execute if block ~ ~ ~ #infinity_cave:all_but_air run function infinity_cave:mechanics/weapons/torpedo_harpoon/hit +scoreboard players add #ic.distance ic.int 1 + + +execute if score #ic.hit ic.int matches 0 if score #ic.distance ic.int matches ..1200 positioned ^ ^ ^0.25 run function infinity_cave:mechanics/weapons/torpedo_harpoon/ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/start_ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/start_ray.mcfunction new file mode 100644 index 0000000..bd54d70 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/start_ray.mcfunction @@ -0,0 +1,17 @@ +item modify entity @s[gamemode=!creative,predicate=infinity_cave:percent/00625] weapon.mainhand infinity_cave:durability_2 + +execute if score #torpedo_const ic.int matches 121..160 run playsound entity.lightning_bolt.impact player @a[distance=..50] ~ ~ ~ 0.25 0.2 1 +execute if score #torpedo_const ic.int matches 81..120 run playsound entity.lightning_bolt.impact player @a[distance=..50] ~ ~ ~ 0.3 0.3 1 +execute if score #torpedo_const ic.int matches 41..80 run playsound entity.lightning_bolt.impact player @a[distance=..50] ~ ~ ~ 0.4 0.4 1 +execute if score #torpedo_const ic.int matches 1..40 run playsound entity.lightning_bolt.impact player @a[distance=..50] ~ ~ ~ 0.8 0.5 1 +execute if score #torpedo_const ic.int matches ..0 run playsound entity.warden.sonic_boom player @a[distance=..50] ~ ~ ~ 1 0.6 1 + +tag @s add ic.torpedo_harpoon +scoreboard players set #ic.hit ic.int 0 +scoreboard players set #ic.distance ic.int 0 + +execute anchored eyes positioned ^ ^ ^ anchored feet run function infinity_cave:mechanics/weapons/torpedo_harpoon/ray + +tag @s remove ic.torpedo_harpoon + + diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/tick.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/tick.mcfunction new file mode 100644 index 0000000..f40783f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/tick.mcfunction @@ -0,0 +1,5 @@ +scoreboard players remove @s[scores={ic.torpedo_charge=1..}] ic.torpedo_charge 1 + +execute if entity @s[scores={ic.torpedo_charge=0}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/launch + +advancement revoke @s[scores={ic.torpedo_charge=1..}] only infinity_cave:mechanics/weapons/torpedo_harpoon/tick \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/settings.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/settings.mcfunction new file mode 100644 index 0000000..0438438 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/settings.mcfunction @@ -0,0 +1,2 @@ +tag @s add ic.settings +schedule function infinity_cave:settings/_schedule 1t append \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/settings/_schedule.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/settings/_schedule.mcfunction new file mode 100644 index 0000000..3cc056c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/settings/_schedule.mcfunction @@ -0,0 +1 @@ +execute as @a[tag=ic.settings] run function infinity_cave:settings/_text \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/settings/_text.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/settings/_text.mcfunction new file mode 100644 index 0000000..9975bba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/settings/_text.mcfunction @@ -0,0 +1,5 @@ +tellraw @s [{"text":" \n \n \n \n \n \n \n \n \n"},{"text":"[ ——","color":"gray"},{"text":" Infinity Cave","color":"blue","bold":false},{"text":" Settings ","color":"white"},{"text":"—— ]\n","color":"gray"},{"text":"Click on text within the square brackets to toggle between different settings.\n"}] + +tellraw @s [{"text":"㊠ All Custom Items: ","color":"gray"},{"text":"> ["},{"text":"Spawn","color":"green","hoverEvent":{"action":"show_text","value":[{"text":"Spawns all custom\nweapons on the\nfloor","color":"gray"}]},"clickEvent":{"action":"run_command","value":"/loot spawn ~ ~ ~ loot infinity_cave:debug/all"}},{"text":"] <","hoverEvent":{"action":"show_text","value":[{"text":"","color":"gray"}]}}] + +tag @s remove ic.settings \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/hit_entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/hit_entity.mcfunction new file mode 100644 index 0000000..31278d2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/hit_entity.mcfunction @@ -0,0 +1,14 @@ +tag @s add ic.target + +execute if predicate infinity_cave:percent/20 at @s if entity @a[scores={ic.hit_projectile=0},limit=1] run function infinity_cave:abilities/generic/been_shot + +execute at @s if entity @a[scores={ic.amethyst_blade=0},distance=..5,limit=1] run function infinity_cave:mechanics/weapons/amethyst_blade/main + +execute at @s if entity @a[scores={ic.steel_battleaxe=0},distance=..5,limit=1] run function infinity_cave:mechanics/weapons/steel_battleaxe/shield + +execute at @s if entity @a[scores={ic.bastion_piercer=0},distance=..7,limit=1] run function infinity_cave:mechanics/weapons/bastion_piercer/distance + +scoreboard players set #amethyst_1 ic.int 0 +scoreboard players set #amethyst_2 ic.int 0 + +tag @s remove ic.target diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity.mcfunction new file mode 100644 index 0000000..91e72c7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity.mcfunction @@ -0,0 +1,23 @@ +scoreboard players set #found ic.id 0 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit0=false, bit1=false, bit2=false, bit3=false, bit4=false, bit5=false, bit6=false, bit7=false, bit8=false, bit9=false, bit10=false, bit11=false, bit12=false, bit13=false, bit14=false, bit15=false}}] run function infinity_cave:technical/hit_match/player_hurt_entity/setup/as_player +execute unless score #found ic.id matches 0 run advancement revoke @s only infinity_cave:technical/hit_match/player_hurt_entity +execute unless score #found ic.id matches 0 run return 0 +scoreboard players reset #id ic.id +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit0=true}}] run scoreboard players add #id ic.id 1 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit1=true}}] run scoreboard players add #id ic.id 2 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit2=true}}] run scoreboard players add #id ic.id 4 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit3=true}}] run scoreboard players add #id ic.id 8 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit4=true}}] run scoreboard players add #id ic.id 16 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit5=true}}] run scoreboard players add #id ic.id 32 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit6=true}}] run scoreboard players add #id ic.id 64 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit7=true}}] run scoreboard players add #id ic.id 128 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit8=true}}] run scoreboard players add #id ic.id 256 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit9=true}}] run scoreboard players add #id ic.id 512 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit10=true}}] run scoreboard players add #id ic.id 1024 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit11=true}}] run scoreboard players add #id ic.id 2048 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit12=true}}] run scoreboard players add #id ic.id 4096 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit13=true}}] run scoreboard players add #id ic.id 8192 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit14=true}}] run scoreboard players add #id ic.id 16384 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit15=true}}] run scoreboard players add #id ic.id 32768 +execute as @e[limit=1,predicate=infinity_cave:match_id] run function infinity_cave:technical/hit_match/player_hurt_entity/as_entity +advancement revoke @s only infinity_cave:technical/hit_match/player_hurt_entity \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/as_entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/as_entity.mcfunction new file mode 100644 index 0000000..69107ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/as_entity.mcfunction @@ -0,0 +1,2 @@ +scoreboard players set #found ic.id 1 +function infinity_cave:technical/hit_match/hit_entity \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_entity.mcfunction new file mode 100644 index 0000000..c6d0e1b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_entity.mcfunction @@ -0,0 +1,5 @@ +execute if score #found ic.id matches 1 run return -1 +execute on attacker if entity @s[type=player,tag=ic.player] run scoreboard players set #found ic.id 1 +execute if score #found ic.id matches 0 run return -1 +function infinity_cave:technical/hit_match/hit_entity +function infinity_cave:technical/hit_match/player_hurt_entity/setup/setup_id \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_player.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_player.mcfunction new file mode 100644 index 0000000..d1f5d1b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_player.mcfunction @@ -0,0 +1,4 @@ +tag @s add ic.player +execute as @e[predicate=infinity_cave:not_setup] run function infinity_cave:technical/hit_match/player_hurt_entity/setup/as_entity +tag @s remove ic.player +execute if score #found ic.id matches 0 run scoreboard players set #found ic.id 2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/setup_id.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/setup_id.mcfunction new file mode 100644 index 0000000..567ddd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/setup_id.mcfunction @@ -0,0 +1,35 @@ +scoreboard players add .global ic.id 1 +execute if score .global ic.id matches 65537.. run scoreboard players set .global ic.id 1 +scoreboard players operation @s ic.id = .global ic.id +scoreboard players operation #id ic.id = .global ic.id +execute if score #id ic.id matches 32768.. run scoreboard players set @s ic.bit15 1 +execute if score #id ic.id matches 32768.. run scoreboard players remove #id ic.id 32768 +execute if score #id ic.id matches 16384.. run scoreboard players set @s ic.bit14 1 +execute if score #id ic.id matches 16384.. run scoreboard players remove #id ic.id 16384 +execute if score #id ic.id matches 8192.. run scoreboard players set @s ic.bit13 1 +execute if score #id ic.id matches 8192.. run scoreboard players remove #id ic.id 8192 +execute if score #id ic.id matches 4096.. run scoreboard players set @s ic.bit12 1 +execute if score #id ic.id matches 4096.. run scoreboard players remove #id ic.id 4096 +execute if score #id ic.id matches 2048.. run scoreboard players set @s ic.bit11 1 +execute if score #id ic.id matches 2048.. run scoreboard players remove #id ic.id 2048 +execute if score #id ic.id matches 1024.. run scoreboard players set @s ic.bit10 1 +execute if score #id ic.id matches 1024.. run scoreboard players remove #id ic.id 1024 +execute if score #id ic.id matches 512.. run scoreboard players set @s ic.bit9 1 +execute if score #id ic.id matches 512.. run scoreboard players remove #id ic.id 512 +execute if score #id ic.id matches 256.. run scoreboard players set @s ic.bit8 1 +execute if score #id ic.id matches 256.. run scoreboard players remove #id ic.id 256 +execute if score #id ic.id matches 128.. run scoreboard players set @s ic.bit7 1 +execute if score #id ic.id matches 128.. run scoreboard players remove #id ic.id 128 +execute if score #id ic.id matches 64.. run scoreboard players set @s ic.bit6 1 +execute if score #id ic.id matches 64.. run scoreboard players remove #id ic.id 64 +execute if score #id ic.id matches 32.. run scoreboard players set @s ic.bit5 1 +execute if score #id ic.id matches 32.. run scoreboard players remove #id ic.id 32 +execute if score #id ic.id matches 16.. run scoreboard players set @s ic.bit4 1 +execute if score #id ic.id matches 16.. run scoreboard players remove #id ic.id 16 +execute if score #id ic.id matches 8.. run scoreboard players set @s ic.bit3 1 +execute if score #id ic.id matches 8.. run scoreboard players remove #id ic.id 8 +execute if score #id ic.id matches 4.. run scoreboard players set @s ic.bit2 1 +execute if score #id ic.id matches 4.. run scoreboard players remove #id ic.id 4 +execute if score #id ic.id matches 2.. run scoreboard players set @s ic.bit1 1 +execute if score #id ic.id matches 2.. run scoreboard players remove #id ic.id 2 +execute if score #id ic.id matches 1.. run scoreboard players set @s ic.bit0 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_projectile.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_projectile.mcfunction new file mode 100644 index 0000000..cb35cae --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/hit_projectile.mcfunction @@ -0,0 +1,3 @@ +scoreboard players set @s ic.hit_projectile 0 + +advancement revoke @s only infinity_cave:technical/hit_projectile \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/math.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/math.mcfunction new file mode 100644 index 0000000..f22ba18 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/math.mcfunction @@ -0,0 +1,9 @@ +function infinity_cave:technical/lcg/math +scoreboard players operation #ic_tmg_temp ic.math = @s ic.math +scoreboard players operation @s ic.math %= #ic_tmg_range ic.math +scoreboard players operation #ic_tmg_temp ic.math -= @s ic.math +scoreboard players operation #ic_tmg_temp ic.math += #ic_tmg_m1 ic.math + +execute if score #ic_tmg_temp ic.math matches ..-1 run function infinity_cave:technical/lcg/next_int + + diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/math2.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/math2.mcfunction new file mode 100644 index 0000000..7f24446 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/math2.mcfunction @@ -0,0 +1,4 @@ +scoreboard players operation #iclcg ic.math *= #iclcg ic.const +scoreboard players add #iclcg ic.math 12345 +scoreboard players set #ic.tmg_in ic.math 7 +scoreboard players operation @s ic.math = #iclcg ic.math \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/next_int.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/next_int.mcfunction new file mode 100644 index 0000000..7cf13f3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/next_int.mcfunction @@ -0,0 +1,7 @@ +function infinity_cave:technical/lcg/math2 + +scoreboard players operation #ic_tmg_temp ic.math = @s ic.math +scoreboard players operation @s ic.math %= #ic_tmg_range ic.math +scoreboard players operation #ic_tmg_temp ic.math -= @s ic.math +scoreboard players operation #ic_tmg_temp ic.math += #ic_tmg_m1 ic.math +execute if score #ic_tmg_temp ic.math matches ..-1 run function infinity_cave:technical/lcg/next_int \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/range.mcfunction b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/range.mcfunction new file mode 100644 index 0000000..bbf2da7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/functions/technical/lcg/range.mcfunction @@ -0,0 +1,16 @@ +scoreboard players add #ic.tmg_in1 ic.math 1 +scoreboard players operation #ic_tmg_range ic.math = #ic.tmg_in1 ic.math +scoreboard players operation #ic_tmg_range ic.math -= #ic.tmg_in ic.math + +scoreboard players operation #ic_tmg_m1 ic.math = #ic_tmg_range ic.math +scoreboard players remove #ic_tmg_m1 ic.math 1 +function infinity_cave:technical/lcg/next_int + +scoreboard players operation @s ic.fish_rate = @s ic.tmg_level +scoreboard players operation @s ic.fish_rate *= #ic1000 ic.const +scoreboard players operation @s ic.fish_rate /= #ic.tmg_in ic.math + +scoreboard players operation @s ic.math += #ic.tmg_in ic.math + +scoreboard players reset #ic_tmg_m1 ic.math +scoreboard players remove #ic.tmg_in1 ic.math 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/common_ench.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/common_ench.json new file mode 100644 index 0000000..3df633d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/common_ench.json @@ -0,0 +1,7 @@ +[ + { + "function": "minecraft:set_damage", + "damage": 0.001, + "add": true + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/durability.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/durability.json new file mode 100644 index 0000000..33bd464 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/durability.json @@ -0,0 +1,145 @@ +[ + { + "function": "minecraft:set_count", + "count": 0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "durability": 1, + "nbt": "{ic:molten_hammer}" + } + } + } + } + ] + }, + { + "function": "minecraft:set_count", + "count": 0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "durability": 1, + "nbt": "{ic:molten_hammer}" + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.33 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 3 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 2 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.67 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 1 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking" + } + ] + } + } + } + } + } + ] + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/durability_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/durability_2.json new file mode 100644 index 0000000..607dcfb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/durability_2.json @@ -0,0 +1,145 @@ +[ + { + "function": "minecraft:set_count", + "count": 0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "durability": 1, + "nbt": "{ic:torpedo_harpoon}" + } + } + } + } + ] + }, + { + "function": "minecraft:set_count", + "count": 0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "durability": 1, + "nbt": "{ic:torpedo_harpoon}" + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.33 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 3 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 2 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.67 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 1 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking" + } + ] + } + } + } + } + } + ] + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_1.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_1.json new file mode 100644 index 0000000..7c4d356 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_1.json @@ -0,0 +1,196 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": 10, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:book" + ], + "count": 1 + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 2 + }, + "minecraft:punch": { + "min": 0, + "max": { + "min": 0, + "max": { + "min": 0, + "max": 1 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 2 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:bow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:quick_charge": { + "min": 0, + "max": 1 + }, + "minecraft:piercing": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 1, + "max": 2 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 2 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:crossbow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 2 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:looting": { + "min": 0, + "max": { + "min": 0, + "max": { + "min": 0, + "max": 1 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 2 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:sharpness" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 1, + "max": 2 + }, + "minecraft:fortune": { + "min": 0, + "max": { + "min": 0, + "max": { + "min": 1, + "max": 2 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 2 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:tools" + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_2.json new file mode 100644 index 0000000..3484777 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_2.json @@ -0,0 +1,216 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": 16, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:book" + ], + "count": 1 + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 3 + }, + "minecraft:punch": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 2, + "max": 2 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:bow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:quick_charge": { + "min": 1, + "max": 2 + }, + "minecraft:piercing": { + "min": 1, + "max": { + "min": 2, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:crossbow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:smite": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 1, + "max": 2 + } + } + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 1, + "max": 2 + } + } + }, + "minecraft:looting": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 0, + "max": 2 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:sharpness" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 1, + "max": 3 + }, + "minecraft:fortune": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 1, + "max": 2 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:tools" + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_3.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_3.json new file mode 100644 index 0000000..9fa8b48 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_3.json @@ -0,0 +1,220 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": 26, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:book" + ], + "count": 1 + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": { + "min": 2, + "max": 4 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": { + "min": 2, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:bow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:quick_charge": { + "min": 1, + "max": 3 + }, + "minecraft:piercing": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 3, + "max": 4 + } + } + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:crossbow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 5 + }, + "minecraft:smite": { + "min": 1, + "max": { + "min": 1, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:bane_of_arthropods": { + "min": 1, + "max": { + "min": 1, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:looting": { + "min": 1, + "max": { + "min": 1, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:sharpness" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": { + "min": 1, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:tools" + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_4.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_4.json new file mode 100644 index 0000000..d1eaa25 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_4.json @@ -0,0 +1,232 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": 32, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:book" + ], + "count": 1 + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 4, + "max": 6 + }, + "minecraft:punch": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 4, + "max": 4 + } + } + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 5 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:bow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:quick_charge": { + "min": 2, + "max": 4 + }, + "minecraft:piercing": { + "min": 3, + "max": { + "min": 4, + "max": { + "min": 4, + "max": 5 + } + } + }, + "minecraft:unbreaking": { + "min": 3, + "max": 5 + }, + "minecraft:multishot": { + "min": 0, + "max": 1 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:crossbow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": { + "min": 3, + "max": 4 + }, + "minecraft:blast_protection": { + "min": 1, + "max": 2 + }, + "minecraft:projectile_protection": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 5 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:smite": { + "min": 1, + "max": { + "min": 2, + "max": { + "min": 3, + "max": 4 + } + } + }, + "minecraft:bane_of_arthropods": { + "min": 1, + "max": { + "min": 2, + "max": { + "min": 3, + "max": 4 + } + } + }, + "minecraft:looting": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 3, + "max": 4 + } + } + }, + "minecraft:unbreaking": { + "min": 3, + "max": 5 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:sharpness" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 5, + "max": 7 + }, + "minecraft:fortune": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 3, + "max": 4 + } + } + }, + "minecraft:unbreaking": { + "min": 3, + "max": 5 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:tools" + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_5.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_5.json new file mode 100644 index 0000000..65b56b7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/enchants/tier_5.json @@ -0,0 +1,236 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": 40, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:book" + ], + "count": 1 + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 6, + "max": 7 + }, + "minecraft:punch": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 5, + "max": 6 + } + } + }, + "minecraft:infinity": { + "min": 1, + "max": 1 + }, + "minecraft:mending": { + "min": 1, + "max": 1 + }, + "minecraft:unbreaking": { + "min": 6, + "max": 10 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:bow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:quick_charge": { + "min": 3, + "max": 5 + }, + "minecraft:piercing": { + "min": 4, + "max": { + "min": 7, + "max": { + "min": 8, + "max": 10 + } + } + }, + "minecraft:unbreaking": { + "min": 6, + "max": 10 + }, + "minecraft:multishot": { + "min": 1, + "max": 1 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:crossbow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": { + "min": 4, + "max": 4 + }, + "minecraft:blast_protection": { + "min": 2, + "max": 4 + }, + "minecraft:projectile_protection": { + "min": 2, + "max": 4 + }, + "minecraft:unbreaking": { + "min": 4, + "max": 10 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 6, + "max": 10 + }, + "minecraft:smite": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 4, + "max": 5 + } + } + }, + "minecraft:bane_of_arthropods": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 4, + "max": 5 + } + } + }, + "minecraft:looting": { + "min": 3, + "max": { + "min": 4, + "max": { + "min": 5, + "max": 6 + } + } + }, + "minecraft:unbreaking": { + "min": 4, + "max": 10 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:sharpness" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 6, + "max": 9 + }, + "minecraft:fortune": { + "min": 3, + "max": { + "min": 4, + "max": { + "min": 5, + "max": 6 + } + } + }, + "minecraft:unbreaking": { + "min": 6, + "max": 10 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:tools" + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/epic_ench.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/epic_ench.json new file mode 100644 index 0000000..6d0ed27 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/epic_ench.json @@ -0,0 +1,16 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 18, + "max": { + "min": 26, + "max": { + "min": 27, + "max": 29 + } + } + } + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/fix.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/fix.json new file mode 100644 index 0000000..300798b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/fix.json @@ -0,0 +1,8 @@ +[ + { + "function": "minecraft:set_damage", + "damage": 0.075, + "add": true + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/full_fix.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/full_fix.json new file mode 100644 index 0000000..c9972f1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/full_fix.json @@ -0,0 +1,7 @@ +[ + { + "function": "minecraft:set_damage", + "damage": 1 + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/legendary_ench.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/legendary_ench.json new file mode 100644 index 0000000..1d28ee4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/legendary_ench.json @@ -0,0 +1,16 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 25, + "max": { + "min": 32, + "max": { + "min": 33, + "max": 50 + } + } + } + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/rare_ench.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/rare_ench.json new file mode 100644 index 0000000..82aaf68 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/rare_ench.json @@ -0,0 +1,16 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 14, + "max": { + "min": 22, + "max": { + "min": 23, + "max": 26 + } + } + } + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/set_count.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/set_count.json new file mode 100644 index 0000000..dea9caa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/set_count.json @@ -0,0 +1,7 @@ +[ + { + "function": "minecraft:set_count", + "count": 0, + "add": true + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/set_count_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/set_count_2.json new file mode 100644 index 0000000..8448ade --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/set_count_2.json @@ -0,0 +1,8 @@ +[ + { + "function": "minecraft:set_count", + "count": 1, + "add": true + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/set_less.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/set_less.json new file mode 100644 index 0000000..a1f2c2a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/set_less.json @@ -0,0 +1,7 @@ +[ + { + "function": "minecraft:set_count", + "count": -1, + "add": true + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/uncommon_ench.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/uncommon_ench.json new file mode 100644 index 0000000..c2fc08c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/item_modifiers/uncommon_ench.json @@ -0,0 +1,16 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 8, + "max": { + "min": 18, + "max": { + "min": 19, + "max": 26 + } + } + } + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/drowned.json new file mode 100644 index 0000000..967d9d0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/enderman.json new file mode 100644 index 0000000..8e8dbbc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/iron_golem.json new file mode 100644 index 0000000..288f4d0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/pillager.json new file mode 100644 index 0000000..b00b8d8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/ravager.json new file mode 100644 index 0000000..a5f85b2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/skeleton.json new file mode 100644 index 0000000..3e49ea7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/slime.json new file mode 100644 index 0000000..42eb002 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/spider.json new file mode 100644 index 0000000..5918773 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/vindicator.json new file mode 100644 index 0000000..e550367 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/wither_skeleton.json new file mode 100644 index 0000000..141fed2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/zombie.json new file mode 100644 index 0000000..7ab8a84 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/zombified_piglin.json new file mode 100644 index 0000000..f8e3225 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/creeper.json new file mode 100644 index 0000000..fb1dec6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/drowned.json new file mode 100644 index 0000000..bd8c801 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/enderman.json new file mode 100644 index 0000000..012da03 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/evoker.json new file mode 100644 index 0000000..6a721be --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/iron_golem.json new file mode 100644 index 0000000..7f83151 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/pillager.json new file mode 100644 index 0000000..600fb4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/ravager.json new file mode 100644 index 0000000..73023e9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/skeleton.json new file mode 100644 index 0000000..bd350ca --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/slime.json new file mode 100644 index 0000000..d34a2b0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/spider.json new file mode 100644 index 0000000..91e31ed --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/vindicator.json new file mode 100644 index 0000000..58f8341 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/witch.json new file mode 100644 index 0000000..0a234bf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/wither_skeleton.json new file mode 100644 index 0000000..ce4c96b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/zombie.json new file mode 100644 index 0000000..4cb55d4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/zombified_piglin.json new file mode 100644 index 0000000..818fa48 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/creeper.json new file mode 100644 index 0000000..6ae4563 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/drowned.json new file mode 100644 index 0000000..7640c11 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/drowned.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/enderman.json new file mode 100644 index 0000000..d7b1421 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/enderman.json @@ -0,0 +1,180 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/evoker.json new file mode 100644 index 0000000..e986b5a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/iron_golem.json new file mode 100644 index 0000000..1e828a9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/pillager.json new file mode 100644 index 0000000..d125dd8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/pillager.json @@ -0,0 +1,78 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/ravager.json new file mode 100644 index 0000000..8791e9c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/skeleton.json new file mode 100644 index 0000000..7612b49 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/skeleton.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/slime.json new file mode 100644 index 0000000..6afeeee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/spider.json new file mode 100644 index 0000000..6610f50 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/vindicator.json new file mode 100644 index 0000000..f51e14d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/witch.json new file mode 100644 index 0000000..07e6729 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/wither_skeleton.json new file mode 100644 index 0000000..3294bba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/zombie.json new file mode 100644 index 0000000..cc12f51 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/zombified_piglin.json new file mode 100644 index 0000000..91d234c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/drowned.json new file mode 100644 index 0000000..e192ac8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/enderman.json new file mode 100644 index 0000000..378b533 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/evoker.json new file mode 100644 index 0000000..8ce1849 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/iron_golem.json new file mode 100644 index 0000000..8a4efae --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/pillager.json new file mode 100644 index 0000000..b620341 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/ravager.json new file mode 100644 index 0000000..bb4c4fe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/skeleton.json new file mode 100644 index 0000000..b670c7b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/slime.json new file mode 100644 index 0000000..9eb6b5a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/spider.json new file mode 100644 index 0000000..757fbf5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/vindicator.json new file mode 100644 index 0000000..ae35c55 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/witch.json new file mode 100644 index 0000000..a474c97 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/wither_skeleton.json new file mode 100644 index 0000000..b155480 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/zombie.json new file mode 100644 index 0000000..5b5e608 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/zombified_piglin.json new file mode 100644 index 0000000..50a837e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/drowned.json new file mode 100644 index 0000000..f589e00 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/enderman.json new file mode 100644 index 0000000..aba39d0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/iron_golem.json new file mode 100644 index 0000000..cdb414b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/pillager.json new file mode 100644 index 0000000..d14c6fa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/ravager.json new file mode 100644 index 0000000..e151635 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/skeleton.json new file mode 100644 index 0000000..aff9f0b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/slime.json new file mode 100644 index 0000000..f989096 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/spider.json new file mode 100644 index 0000000..43c8c61 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/vindicator.json new file mode 100644 index 0000000..40414b7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/wither_skeleton.json new file mode 100644 index 0000000..ae07de1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/zombie.json new file mode 100644 index 0000000..60d7a22 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/zombified_piglin.json new file mode 100644 index 0000000..d0a5db8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/amethyst/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/debug/all.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/debug/all.json new file mode 100644 index 0000000..477355e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/debug/all.json @@ -0,0 +1,577 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:1,ic:sonic_bow}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Supersonic Bow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Bow is chargable and will gain ", + "color": "gray", + "italic": false + }, + { + "text": "momentum the longer charged ", + "color": "gray", + "italic": false + }, + { + "text": "gaining pierce at charge level ", + "color": "gray", + "italic": false + }, + { + "text": "2 or higher. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "If an emnemy is close while ", + "color": "gray", + "italic": false + }, + { + "text": "shooting a charged shot, an ", + "color": "gray", + "italic": false + }, + { + "text": "explosion occurs instead. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brush", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crossbow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:1,ic:icicle_crossbow}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Icicle Crossbow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Projectiles travel 3 times", + "color": "gray", + "italic": false + }, + { + "text": "faster, dealing more damage. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/drowned.json new file mode 100644 index 0000000..90f1977 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/enderman.json new file mode 100644 index 0000000..06bd416 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/enderman.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/iron_golem.json new file mode 100644 index 0000000..e8a9b56 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/iron_golem.json @@ -0,0 +1,61 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/pillager.json new file mode 100644 index 0000000..724c7c4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/pillager.json @@ -0,0 +1,61 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/ravager.json new file mode 100644 index 0000000..252a256 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/skeleton.json new file mode 100644 index 0000000..81f5637 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/slime.json new file mode 100644 index 0000000..18d0a12 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/slime.json @@ -0,0 +1,363 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/spider.json new file mode 100644 index 0000000..5b382ea --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/vindicator.json new file mode 100644 index 0000000..58af992 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/wither_skeleton.json new file mode 100644 index 0000000..9494b9f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/wither_skeleton.json @@ -0,0 +1,97 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/zombie.json new file mode 100644 index 0000000..950dd73 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/zombified_piglin.json new file mode 100644 index 0000000..47a61b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/creeper.json new file mode 100644 index 0000000..b04e090 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/drowned.json new file mode 100644 index 0000000..7d53113 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/enderman.json new file mode 100644 index 0000000..696cf32 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/evoker.json new file mode 100644 index 0000000..6e6a554 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/iron_golem.json new file mode 100644 index 0000000..ecb90cf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/pillager.json new file mode 100644 index 0000000..4a44e91 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/ravager.json new file mode 100644 index 0000000..0e0958f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/skeleton.json new file mode 100644 index 0000000..5300364 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/slime.json new file mode 100644 index 0000000..ac14aa1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/spider.json new file mode 100644 index 0000000..81a3696 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/vindicator.json new file mode 100644 index 0000000..3d13cfe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/witch.json new file mode 100644 index 0000000..fad8358 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/witch.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/wither_skeleton.json new file mode 100644 index 0000000..9c02c9e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/zombie.json new file mode 100644 index 0000000..1ec970f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/zombified_piglin.json new file mode 100644 index 0000000..11d2b62 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/creeper.json new file mode 100644 index 0000000..a1518a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/drowned.json new file mode 100644 index 0000000..40e55f3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/drowned.json @@ -0,0 +1,154 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/enderman.json new file mode 100644 index 0000000..1d3e1c9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/enderman.json @@ -0,0 +1,180 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/evoker.json new file mode 100644 index 0000000..458dda5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/iron_golem.json new file mode 100644 index 0000000..9c8dbdf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/pillager.json new file mode 100644 index 0000000..e307059 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/pillager.json @@ -0,0 +1,151 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:bow", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:sonic_bow}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Supersonic Bow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Bow is chargable and will gain ", + "color": "gray", + "italic": false + }, + { + "text": "momentum the longer charged ", + "color": "gray", + "italic": false + }, + { + "text": "gaining pierce at charge level ", + "color": "gray", + "italic": false + }, + { + "text": "2 or higher. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "If an emnemy is close while ", + "color": "gray", + "italic": false + }, + { + "text": "shooting a charged shot, an ", + "color": "gray", + "italic": false + }, + { + "text": "explosion occurs instead. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/ravager.json new file mode 100644 index 0000000..ea798ff --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/skeleton.json new file mode 100644 index 0000000..08f7d2b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/skeleton.json @@ -0,0 +1,164 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:bow", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:sonic_bow}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Supersonic Bow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Bow is chargable and will gain ", + "color": "gray", + "italic": false + }, + { + "text": "momentum the longer charged ", + "color": "gray", + "italic": false + }, + { + "text": "gaining pierce at charge level ", + "color": "gray", + "italic": false + }, + { + "text": "2 or higher. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "If an emnemy is close while ", + "color": "gray", + "italic": false + }, + { + "text": "shooting a charged shot, an ", + "color": "gray", + "italic": false + }, + { + "text": "explosion occurs instead. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/slime.json new file mode 100644 index 0000000..ceb5666 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/spider.json new file mode 100644 index 0000000..8dbee49 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/vindicator.json new file mode 100644 index 0000000..ee3fcaf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/witch.json new file mode 100644 index 0000000..f90874b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/wither_skeleton.json new file mode 100644 index 0000000..89b43f6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/zombie.json new file mode 100644 index 0000000..a458bf6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/zombified_piglin.json new file mode 100644 index 0000000..16fa6f9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/drowned.json new file mode 100644 index 0000000..a4c3ed3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/enderman.json new file mode 100644 index 0000000..51010ba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/evoker.json new file mode 100644 index 0000000..80c2186 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/iron_golem.json new file mode 100644 index 0000000..dc960d7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/pillager.json new file mode 100644 index 0000000..1935fec --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/ravager.json new file mode 100644 index 0000000..339abdf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/skeleton.json new file mode 100644 index 0000000..003f07a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/slime.json new file mode 100644 index 0000000..65b9ccf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/spider.json new file mode 100644 index 0000000..38eac80 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/vindicator.json new file mode 100644 index 0000000..230e996 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/witch.json new file mode 100644 index 0000000..abb127c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/wither_skeleton.json new file mode 100644 index 0000000..b3b586d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/zombie.json new file mode 100644 index 0000000..3b6f4e6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/zombified_piglin.json new file mode 100644 index 0000000..8d2239b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/drowned.json new file mode 100644 index 0000000..e850030 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/enderman.json new file mode 100644 index 0000000..bbeef5f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/iron_golem.json new file mode 100644 index 0000000..9fc882b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/pillager.json new file mode 100644 index 0000000..ad54d2a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/ravager.json new file mode 100644 index 0000000..e05749a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/skeleton.json new file mode 100644 index 0000000..a03c00f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/slime.json new file mode 100644 index 0000000..066fd1e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/spider.json new file mode 100644 index 0000000..2e2830d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/vindicator.json new file mode 100644 index 0000000..65faa5b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/wither_skeleton.json new file mode 100644 index 0000000..310c263 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/zombie.json new file mode 100644 index 0000000..bff755b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/zombified_piglin.json new file mode 100644 index 0000000..6686f61 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deep_dark/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/drowned.json new file mode 100644 index 0000000..add4684 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/enderman.json new file mode 100644 index 0000000..2318ace --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/iron_golem.json new file mode 100644 index 0000000..d3c5619 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/pillager.json new file mode 100644 index 0000000..384b5fc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/ravager.json new file mode 100644 index 0000000..96ad04d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/skeleton.json new file mode 100644 index 0000000..275fe33 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/slime.json new file mode 100644 index 0000000..43db11c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/spider.json new file mode 100644 index 0000000..76223d7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/vindicator.json new file mode 100644 index 0000000..115b99d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/wither_skeleton.json new file mode 100644 index 0000000..1003858 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/zombie.json new file mode 100644 index 0000000..ee3a618 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/zombified_piglin.json new file mode 100644 index 0000000..0cf18c0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/creeper.json new file mode 100644 index 0000000..0fcd8f8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/drowned.json new file mode 100644 index 0000000..badb280 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/enderman.json new file mode 100644 index 0000000..44718b2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/evoker.json new file mode 100644 index 0000000..b0d78d5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/iron_golem.json new file mode 100644 index 0000000..376003e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/pillager.json new file mode 100644 index 0000000..3fc7b05 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/ravager.json new file mode 100644 index 0000000..c562ab9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/skeleton.json new file mode 100644 index 0000000..caec81b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/slime.json new file mode 100644 index 0000000..aa27d90 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/spider.json new file mode 100644 index 0000000..867f3d1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/vindicator.json new file mode 100644 index 0000000..a0bffe2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/witch.json new file mode 100644 index 0000000..af8e849 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/witch.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/wither_skeleton.json new file mode 100644 index 0000000..ba5a214 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/zombie.json new file mode 100644 index 0000000..483cbe4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/zombified_piglin.json new file mode 100644 index 0000000..5b3caf3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/creeper.json new file mode 100644 index 0000000..02d7ebc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/drowned.json new file mode 100644 index 0000000..8438285 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/drowned.json @@ -0,0 +1,154 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/enderman.json new file mode 100644 index 0000000..118122d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/enderman.json @@ -0,0 +1,179 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/evoker.json new file mode 100644 index 0000000..6f5877b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/iron_golem.json new file mode 100644 index 0000000..2dedfd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/pillager.json new file mode 100644 index 0000000..0c1ce2f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/pillager.json @@ -0,0 +1,78 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/ravager.json new file mode 100644 index 0000000..4c87f2c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/skeleton.json new file mode 100644 index 0000000..13e2716 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/skeleton.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/slime.json new file mode 100644 index 0000000..228290b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/spider.json new file mode 100644 index 0000000..599e894 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/vindicator.json new file mode 100644 index 0000000..90cbe7b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/witch.json new file mode 100644 index 0000000..f7cd2a0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/wither_skeleton.json new file mode 100644 index 0000000..3a5427c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/zombie.json new file mode 100644 index 0000000..4a7445a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/zombified_piglin.json new file mode 100644 index 0000000..f8421dc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/drowned.json new file mode 100644 index 0000000..02e4437 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/enderman.json new file mode 100644 index 0000000..3f2d336 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/evoker.json new file mode 100644 index 0000000..9acd901 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/iron_golem.json new file mode 100644 index 0000000..0f432c8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/pillager.json new file mode 100644 index 0000000..b4b9abc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/ravager.json new file mode 100644 index 0000000..bf54ada --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/skeleton.json new file mode 100644 index 0000000..c1d522a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/slime.json new file mode 100644 index 0000000..3758bd7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/spider.json new file mode 100644 index 0000000..920386b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/vindicator.json new file mode 100644 index 0000000..b0944c1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/witch.json new file mode 100644 index 0000000..36f2997 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/wither_skeleton.json new file mode 100644 index 0000000..6af6459 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/zombie.json new file mode 100644 index 0000000..461f0ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/zombified_piglin.json new file mode 100644 index 0000000..d490e2a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/drowned.json new file mode 100644 index 0000000..c9ec49f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/enderman.json new file mode 100644 index 0000000..768d744 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/iron_golem.json new file mode 100644 index 0000000..006d92b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/pillager.json new file mode 100644 index 0000000..b39ce7a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/ravager.json new file mode 100644 index 0000000..8bae664 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/skeleton.json new file mode 100644 index 0000000..0ab9944 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/slime.json new file mode 100644 index 0000000..1701433 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/spider.json new file mode 100644 index 0000000..a2cd5d7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/vindicator.json new file mode 100644 index 0000000..2499123 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/wither_skeleton.json new file mode 100644 index 0000000..60ae240 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/zombie.json new file mode 100644 index 0000000..64c0833 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/zombified_piglin.json new file mode 100644 index 0000000..777d7d2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/deeprock/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/drowned.json new file mode 100644 index 0000000..339f246 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/enderman.json new file mode 100644 index 0000000..531cbf3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/iron_golem.json new file mode 100644 index 0000000..95777b0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/pillager.json new file mode 100644 index 0000000..27a02d0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/ravager.json new file mode 100644 index 0000000..c1bdb6f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/skeleton.json new file mode 100644 index 0000000..c23bbb4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/slime.json new file mode 100644 index 0000000..d01867f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/spider.json new file mode 100644 index 0000000..18eed3f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/vindicator.json new file mode 100644 index 0000000..e361a3f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/wither_skeleton.json new file mode 100644 index 0000000..883466e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/zombie.json new file mode 100644 index 0000000..ab9ff2f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/zombified_piglin.json new file mode 100644 index 0000000..c290419 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/creeper.json new file mode 100644 index 0000000..ffe5df8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/drowned.json new file mode 100644 index 0000000..493a65b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/enderman.json new file mode 100644 index 0000000..cafa3be --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/evoker.json new file mode 100644 index 0000000..7b661ad --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/iron_golem.json new file mode 100644 index 0000000..dfa28b6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/pillager.json new file mode 100644 index 0000000..2b7f22b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/ravager.json new file mode 100644 index 0000000..28d95ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/skeleton.json new file mode 100644 index 0000000..e7b0cae --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/slime.json new file mode 100644 index 0000000..c50f287 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/spider.json new file mode 100644 index 0000000..0b9c274 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/vindicator.json new file mode 100644 index 0000000..bf1dc1d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/witch.json new file mode 100644 index 0000000..bb0a6f9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/witch.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/wither_skeleton.json new file mode 100644 index 0000000..a7c2fc7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/zombie.json new file mode 100644 index 0000000..34b3c26 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/zombified_piglin.json new file mode 100644 index 0000000..4668e96 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/creeper.json new file mode 100644 index 0000000..33d6ca1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/drowned.json new file mode 100644 index 0000000..6e0f027 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/drowned.json @@ -0,0 +1,154 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/enderman.json new file mode 100644 index 0000000..8a1ce8a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/enderman.json @@ -0,0 +1,180 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/evoker.json new file mode 100644 index 0000000..a802d38 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/iron_golem.json new file mode 100644 index 0000000..6aff35a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/pillager.json new file mode 100644 index 0000000..7d6011f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/pillager.json @@ -0,0 +1,149 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:crossbow", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:icicle_crossbow}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Icicle Crossbow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Projectiles travel 3 times", + "color": "gray", + "italic": false + }, + { + "text": "faster, dealing more damage. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:diamond", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/ravager.json new file mode 100644 index 0000000..10990ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/skeleton.json new file mode 100644 index 0000000..b2dd992 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/skeleton.json @@ -0,0 +1,134 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:crossbow", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:icicle_crossbow}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Icicle Crossbow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Projectiles travel 3 times", + "color": "gray", + "italic": false + }, + { + "text": "faster, dealing more damage. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/slime.json new file mode 100644 index 0000000..a498e16 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/spider.json new file mode 100644 index 0000000..9b8f153 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/vindicator.json new file mode 100644 index 0000000..137f633 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/witch.json new file mode 100644 index 0000000..6e0c388 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/wither_skeleton.json new file mode 100644 index 0000000..84beb91 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/zombie.json new file mode 100644 index 0000000..acbfd5f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/zombified_piglin.json new file mode 100644 index 0000000..3b92478 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/drowned.json new file mode 100644 index 0000000..e2eb199 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/enderman.json new file mode 100644 index 0000000..a9bebb6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/evoker.json new file mode 100644 index 0000000..50fde53 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/iron_golem.json new file mode 100644 index 0000000..a0c957e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/pillager.json new file mode 100644 index 0000000..5c6f140 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/ravager.json new file mode 100644 index 0000000..f7ec961 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/skeleton.json new file mode 100644 index 0000000..022b535 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/slime.json new file mode 100644 index 0000000..7a48dd6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/spider.json new file mode 100644 index 0000000..395f83e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/vindicator.json new file mode 100644 index 0000000..7255c0a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/witch.json new file mode 100644 index 0000000..8651fd1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/wither_skeleton.json new file mode 100644 index 0000000..7d7ea93 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/zombie.json new file mode 100644 index 0000000..485eb52 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/zombified_piglin.json new file mode 100644 index 0000000..334e975 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/drowned.json new file mode 100644 index 0000000..7ca0b89 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/enderman.json new file mode 100644 index 0000000..24a70e3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/iron_golem.json new file mode 100644 index 0000000..d115537 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/pillager.json new file mode 100644 index 0000000..1cee3f2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/ravager.json new file mode 100644 index 0000000..3d2e538 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/skeleton.json new file mode 100644 index 0000000..5b5ad4f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/slime.json new file mode 100644 index 0000000..8557b9b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/spider.json new file mode 100644 index 0000000..d3dd8d6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/vindicator.json new file mode 100644 index 0000000..f1f403e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/wither_skeleton.json new file mode 100644 index 0000000..e82e52a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/zombie.json new file mode 100644 index 0000000..01dc8b2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/zombified_piglin.json new file mode 100644 index 0000000..317498b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/frozen/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/drowned.json new file mode 100644 index 0000000..5e7ea16 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/enderman.json new file mode 100644 index 0000000..3986a41 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/iron_golem.json new file mode 100644 index 0000000..f933658 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/pillager.json new file mode 100644 index 0000000..38e1c35 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/ravager.json new file mode 100644 index 0000000..cded5ac --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/skeleton.json new file mode 100644 index 0000000..c5ac506 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/slime.json new file mode 100644 index 0000000..92123e2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/spider.json new file mode 100644 index 0000000..22f4cf0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/vindicator.json new file mode 100644 index 0000000..3ddee79 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/wither_skeleton.json new file mode 100644 index 0000000..2157b85 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/zombie.json new file mode 100644 index 0000000..1e07f9d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/zombified_piglin.json new file mode 100644 index 0000000..f0899d6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/creeper.json new file mode 100644 index 0000000..b4333c1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/drowned.json new file mode 100644 index 0000000..cd72d96 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/enderman.json new file mode 100644 index 0000000..2a5e3ed --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/evoker.json new file mode 100644 index 0000000..3cf5751 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/iron_golem.json new file mode 100644 index 0000000..8ed5f82 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/pillager.json new file mode 100644 index 0000000..fbdffe2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/ravager.json new file mode 100644 index 0000000..b598d41 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/skeleton.json new file mode 100644 index 0000000..837a7ad --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/slime.json new file mode 100644 index 0000000..feae7a3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/spider.json new file mode 100644 index 0000000..3597321 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/vindicator.json new file mode 100644 index 0000000..e4bc2cf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/witch.json new file mode 100644 index 0000000..db92885 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/wither_skeleton.json new file mode 100644 index 0000000..00661a9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/zombie.json new file mode 100644 index 0000000..e7d49bd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/zombified_piglin.json new file mode 100644 index 0000000..a21b0a6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/creeper.json new file mode 100644 index 0000000..4099087 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/drowned.json new file mode 100644 index 0000000..d8a36dc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/drowned.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/enderman.json new file mode 100644 index 0000000..129230e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/enderman.json @@ -0,0 +1,180 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:limestone_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "limestone Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/evoker.json new file mode 100644 index 0000000..3e533b7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/iron_golem.json new file mode 100644 index 0000000..32a41fe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/pillager.json new file mode 100644 index 0000000..9eaed52 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/pillager.json @@ -0,0 +1,78 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/ravager.json new file mode 100644 index 0000000..590f4b6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/skeleton.json new file mode 100644 index 0000000..2c5fd4a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/skeleton.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/slime.json new file mode 100644 index 0000000..c3d6db7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/spider.json new file mode 100644 index 0000000..e941f1d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/vindicator.json new file mode 100644 index 0000000..c687ca5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/witch.json new file mode 100644 index 0000000..aa78eb7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/wither_skeleton.json new file mode 100644 index 0000000..3c9abc9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/zombie.json new file mode 100644 index 0000000..67b4cca --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/zombified_piglin.json new file mode 100644 index 0000000..697f7d4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/drowned.json new file mode 100644 index 0000000..3d3a72a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/enderman.json new file mode 100644 index 0000000..300c05f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/evoker.json new file mode 100644 index 0000000..a3ca48a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/iron_golem.json new file mode 100644 index 0000000..de32d76 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/pillager.json new file mode 100644 index 0000000..a286b8f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/ravager.json new file mode 100644 index 0000000..3790da8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/skeleton.json new file mode 100644 index 0000000..6802756 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/slime.json new file mode 100644 index 0000000..bf1ea47 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/spider.json new file mode 100644 index 0000000..65bc087 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/vindicator.json new file mode 100644 index 0000000..5e70e4b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/witch.json new file mode 100644 index 0000000..17cca10 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/wither_skeleton.json new file mode 100644 index 0000000..9e5f715 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/zombie.json new file mode 100644 index 0000000..0b0ccdd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/zombified_piglin.json new file mode 100644 index 0000000..d7c1880 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/drowned.json new file mode 100644 index 0000000..c265656 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/enderman.json new file mode 100644 index 0000000..0ae09e1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/iron_golem.json new file mode 100644 index 0000000..0a2a60c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/pillager.json new file mode 100644 index 0000000..f0eaeac --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/ravager.json new file mode 100644 index 0000000..ff28a22 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/skeleton.json new file mode 100644 index 0000000..2fbbce5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/slime.json new file mode 100644 index 0000000..17f7e5c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/spider.json new file mode 100644 index 0000000..0ded98a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/vindicator.json new file mode 100644 index 0000000..d32dfb5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/wither_skeleton.json new file mode 100644 index 0000000..3009358 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/zombie.json new file mode 100644 index 0000000..3d52e52 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/zombified_piglin.json new file mode 100644 index 0000000..89e2709 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/limestone/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/drowned.json new file mode 100644 index 0000000..64d0aa8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/enderman.json new file mode 100644 index 0000000..6677a89 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/iron_golem.json new file mode 100644 index 0000000..d6d8a10 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/pillager.json new file mode 100644 index 0000000..f22deaa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/pillager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/ravager.json new file mode 100644 index 0000000..dddc812 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/skeleton.json new file mode 100644 index 0000000..9367b24 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/slime.json new file mode 100644 index 0000000..9175b13 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/spider.json new file mode 100644 index 0000000..a3f06b8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/vindicator.json new file mode 100644 index 0000000..ee8dfb2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/wither_skeleton.json new file mode 100644 index 0000000..5f2c7fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/zombie.json new file mode 100644 index 0000000..426cb2e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/zombified_piglin.json new file mode 100644 index 0000000..ae9cfd5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/creeper.json new file mode 100644 index 0000000..b3d5aaa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/drowned.json new file mode 100644 index 0000000..2a26cb8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/enderman.json new file mode 100644 index 0000000..a287f24 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/evoker.json new file mode 100644 index 0000000..242318a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/iron_golem.json new file mode 100644 index 0000000..6560b19 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/pillager.json new file mode 100644 index 0000000..e664fc5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/ravager.json new file mode 100644 index 0000000..1d69b53 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/skeleton.json new file mode 100644 index 0000000..a77c3dd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/slime.json new file mode 100644 index 0000000..aec96d5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/spider.json new file mode 100644 index 0000000..ed2fc07 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/vindicator.json new file mode 100644 index 0000000..09dc097 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/witch.json new file mode 100644 index 0000000..b427664 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/witch.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/wither_skeleton.json new file mode 100644 index 0000000..e453434 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/zombie.json new file mode 100644 index 0000000..63b9cb5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/zombified_piglin.json new file mode 100644 index 0000000..d4662ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/creeper.json new file mode 100644 index 0000000..c6e18c7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/drowned.json new file mode 100644 index 0000000..3b78942 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/drowned.json @@ -0,0 +1,154 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:thunder_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/enderman.json new file mode 100644 index 0000000..a4df794 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/enderman.json @@ -0,0 +1,179 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/evoker.json new file mode 100644 index 0000000..a545084 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/iron_golem.json new file mode 100644 index 0000000..5104cfe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/iron_golem.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:diamond", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/pillager.json new file mode 100644 index 0000000..9a9d71f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/pillager.json @@ -0,0 +1,78 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/ravager.json new file mode 100644 index 0000000..efc8ded --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/skeleton.json new file mode 100644 index 0000000..155a474 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/skeleton.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/slime.json new file mode 100644 index 0000000..0880dba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/spider.json new file mode 100644 index 0000000..14bdee5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/vindicator.json new file mode 100644 index 0000000..6e5087b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/witch.json new file mode 100644 index 0000000..8d201b1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/wither_skeleton.json new file mode 100644 index 0000000..8deabea --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/zombie.json new file mode 100644 index 0000000..3c4a0c3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/zombified_piglin.json new file mode 100644 index 0000000..9b5a9e9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/drowned.json new file mode 100644 index 0000000..1860fed --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/enderman.json new file mode 100644 index 0000000..e926354 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/evoker.json new file mode 100644 index 0000000..0485e3f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/iron_golem.json new file mode 100644 index 0000000..ae0f3d8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/pillager.json new file mode 100644 index 0000000..9c81d25 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/ravager.json new file mode 100644 index 0000000..9b74d96 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/skeleton.json new file mode 100644 index 0000000..604da21 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/slime.json new file mode 100644 index 0000000..bf908f6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/spider.json new file mode 100644 index 0000000..e9c625e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/vindicator.json new file mode 100644 index 0000000..fa9db4e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/witch.json new file mode 100644 index 0000000..3b2f7bf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/wither_skeleton.json new file mode 100644 index 0000000..6746671 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/zombie.json new file mode 100644 index 0000000..caf82c2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/zombified_piglin.json new file mode 100644 index 0000000..19d7ee0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/drowned.json new file mode 100644 index 0000000..a7a67ba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/enderman.json new file mode 100644 index 0000000..185da46 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/iron_golem.json new file mode 100644 index 0000000..4749b55 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/pillager.json new file mode 100644 index 0000000..84955ea --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/ravager.json new file mode 100644 index 0000000..5e8cd6b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/skeleton.json new file mode 100644 index 0000000..ee9cd23 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/slime.json new file mode 100644 index 0000000..10147a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/spider.json new file mode 100644 index 0000000..bb907a2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/vindicator.json new file mode 100644 index 0000000..30ade69 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/wither_skeleton.json new file mode 100644 index 0000000..a677b9d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/zombie.json new file mode 100644 index 0000000..0d39fcc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/zombified_piglin.json new file mode 100644 index 0000000..fe9ce02 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/molten/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/common.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/common.json new file mode 100644 index 0000000..c773623 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/common.json @@ -0,0 +1,34 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:chorus_fruit" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:amethyst_shard", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/epic.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/epic.json new file mode 100644 index 0000000..55a9ac8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/epic.json @@ -0,0 +1,117 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:chorus_fruit", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:enchanted_chorus_fruit,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "entity": "this", + "name": [ + { + "text": "Enchanted Chorus Fruit", + "color": "light_purple", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "set_nbt", + "tag": "{ic:rc,rc:magic_repair,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Magic Repair", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to fully repair ", + "color": "gray", + "italic": false + }, + { + "text": "the armor you are wearing. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 28, + "max": 40 + }, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/legendary.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/legendary.json new file mode 100644 index 0000000..ade4189 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/legendary.json @@ -0,0 +1,126 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:chorus_fruit", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:enchanted_chorus_fruit,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "entity": "this", + "name": [ + { + "text": "Enchanted Chorus Fruit", + "color": "light_purple", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:magic_repair,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Magic Repair", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to fully repair ", + "color": "gray", + "italic": false + }, + { + "text": "the armor you are wearing. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 50, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/rare.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/rare.json new file mode 100644 index 0000000..64da5bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/rare.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:chorus_fruit", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:spyglass", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:magic_spyglass,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Magic Spyglass", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Looking at a mob will ", + "color": "gray", + "italic": false + }, + { + "text": "return its health. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/uncommon.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/uncommon.json new file mode 100644 index 0000000..6ce5d3f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/amethyst/uncommon.json @@ -0,0 +1,58 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:chorus_fruit", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:chorus_plant" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 6, + "max": 12 + }, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:end_stone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/common_gear.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/common_gear.json new file mode 100644 index 0000000..2e318c7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/common_gear.json @@ -0,0 +1,194 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:rc,rc:enchant,ec:1}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier I", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 6 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_helmet", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_chestplate", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_leggings", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_boots", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_sword", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_axe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.0125 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/common.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/common.json new file mode 100644 index 0000000..a0cc57d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/common.json @@ -0,0 +1,43 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:echo_shard" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:sculk", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/epic.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/epic.json new file mode 100644 index 0000000..b67a28f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/epic.json @@ -0,0 +1,105 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:strong_strength" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_scrap", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:echo_shard", + "functions": [ + { + "function": "minecraft:set_name", + "entity": "this", + "name": { + "text": "Darkness Cleanse", + "color": "aqua", + "italic": false + } + }, + { + "function": "minecraft:set_lore", + "entity": "this", + "lore": [ + { + "text": "Clears the user of Darkness, ", + "color": "gray", + "italic": false + }, + { + "text": "consumes the item on use. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:darkness_cleanse,Enchantments:[{}]}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:diamond_hoe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 2, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/legendary.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/legendary.json new file mode 100644 index 0000000..9e9e52e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/legendary.json @@ -0,0 +1,138 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_upgrade_smithing_template", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:echo_shard", + "functions": [ + { + "function": "minecraft:set_name", + "entity": "this", + "name": { + "text": "Darkness Cleanse", + "color": "aqua", + "italic": false + } + }, + { + "function": "minecraft:set_lore", + "entity": "this", + "lore": [ + { + "text": "Clears the user of Darkness, ", + "color": "gray", + "italic": false + }, + { + "text": "consumes the item on use. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:darkness_cleanse,Enchantments:[{}]}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:diamond_hoe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 2, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:speed\",amplifier:1b,duration:4800,show_particles:1b},{id:\"minecraft:strength\",amplifier:1b,duration:4800,show_particles:1b},{id:\"minecraft:regeneration\",amplifier:0b,duration:4800,show_particles:1b}],CustomPotionColor:851968}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Deep Dark Potion", + "color": "gold", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/rare.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/rare.json new file mode 100644 index 0000000..2576e2e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/rare.json @@ -0,0 +1,96 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:strength" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:echo_shard", + "functions": [ + { + "function": "minecraft:set_name", + "entity": "this", + "name": { + "text": "Darkness Cleanse", + "color": "aqua", + "italic": false + } + }, + { + "function": "minecraft:set_lore", + "entity": "this", + "lore": [ + { + "text": "Clears the user of Darkness, ", + "color": "gray", + "italic": false + }, + { + "text": "consumes the item on use. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:darkness_cleanse,Enchantments:[{}]}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:iron_hoe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 2, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/uncommon.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/uncommon.json new file mode 100644 index 0000000..2f53233 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deep_dark/uncommon.json @@ -0,0 +1,97 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:swift_sneak" + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:echo_shard", + "functions": [ + { + "function": "minecraft:set_name", + "entity": "this", + "name": { + "text": "Darkness Cleanse", + "color": "aqua", + "italic": false + } + }, + { + "function": "minecraft:set_lore", + "entity": "this", + "lore": [ + { + "text": "Clears the user of Darkness, ", + "color": "gray", + "italic": false + }, + { + "text": "consumes the item on use. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:darkness_cleanse,Enchantments:[{}]}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:stone_hoe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 1, + "max": 4 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/common.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/common.json new file mode 100644 index 0000000..baf8803 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/common.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/epic.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/epic.json new file mode 100644 index 0000000..14fe926 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/epic.json @@ -0,0 +1,94 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_pickaxe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 20, + "max": 40 + }, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/legendary.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/legendary.json new file mode 100644 index 0000000..e6985ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/legendary.json @@ -0,0 +1,192 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_pickaxe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 30, + "max": 50 + }, + "treasure": true + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": 6 + }, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:2400,show_particles:1b},{id:\"minecraft:darkness\",amplifier:1b,duration:100,show_particles:1b}],CustomPotionColor:1310720}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Deeprock Potion", + "color": "gold", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_chestplate", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:deeprock_chestplate,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:9,Operation:0,UUID:[I;-525814044,1462060291,-1203648569,315279682],Slot:\"chest\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:4,Operation:0,UUID:[I;558744405,-183547779,-1655607653,983358503],Slot:\"chest\"},{AttributeName:\"generic.max_health\",Name:\"generic.max_health\",Amount:2,Operation:0,UUID:[I;-709811626,-1253290576,-1817758826,-1116480218],Slot:\"chest\"}],Trim:{material:\"minecraft:netherite\",pattern:\"minecraft:dune\"}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Deeprock Chestplate", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Damage exceeding 20 causes", + "color": "gray", + "italic": false + }, + { + "text": "the user to heal 1 health. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": 4, + "minecraft:blast_protection": 2, + "unbreaking": 10 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/rare.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/rare.json new file mode 100644 index 0000000..c86a0a0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/rare.json @@ -0,0 +1,99 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_scrap", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/uncommon.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/uncommon.json new file mode 100644 index 0000000..4961800 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/deeprock/uncommon.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:dark_oak_log", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/epic_gear.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/epic_gear.json new file mode 100644 index 0000000..e1675f5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/epic_gear.json @@ -0,0 +1,250 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/legendary_gear", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:white_banner", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:32,ic:safety_banner,BlockEntityTag:{Patterns:[{Color:15,Pattern:\"cs\"},{Color:15,Pattern:\"ms\"}]}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Safety Banner", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Place down to clear a ", + "color": "gray", + "italic": false + }, + { + "text": "50x50 area from mob", + "color": "gray", + "italic": false + }, + { + "text": "spawning.", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + } + ] + }, + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_chestplate", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_leggings", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_upgrade_smithing_template", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_boots", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_sword", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/common.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/common.json new file mode 100644 index 0000000..d6d87f8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/common.json @@ -0,0 +1,43 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:blue_ice" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:packed_ice", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/epic.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/epic.json new file mode 100644 index 0000000..be4215a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/epic.json @@ -0,0 +1,147 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:snow_block" + }, + { + "type": "minecraft:item", + "name": "minecraft:carved_pumpkin", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:blue_ice" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:packed_ice", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:7,ic:rc,rc:ice_spark,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Ice Spark", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot an ice spark", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking,", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:mining_fatigue\",amplifier:1b,duration:60,show_particles:1b}],CustomPotionColor:1280417}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Frostbite Arrow", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 6 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/legendary.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/legendary.json new file mode 100644 index 0000000..c2a6664 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/legendary.json @@ -0,0 +1,184 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:7,ic:rc,rc:ice_spark,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Ice Spark", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot an ice spark", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking,", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:mining_fatigue\",amplifier:1b,duration:60,show_particles:1b}],CustomPotionColor:1280417}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Frostbite Arrow", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_boots", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:frozen_boots,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;-525804044,1462090291,-1203648569,315279682],Slot:\"feet\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:3,Operation:0,UUID:[I;553744405,-183547779,-1655907653,983358503],Slot:\"feet\"},{AttributeName:\"generic.movement_speed\",Name:\"generic.movement_speed\",Amount:0.1,Operation:1,UUID:[I;-709811626,-1253590576,-1817758826,-1616480218],Slot:\"feet\"}],Trim:{material:\"minecraft:lapis\",pattern:\"minecraft:wild\"}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Frozen Boots", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Falling on ice-type blocks ", + "color": "gray", + "italic": false + }, + { + "text": "slows and damages enemies ", + "color": "gray", + "italic": false + }, + { + "text": "in a 3 block radius.", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": 4, + "minecraft:blast_protection": 2, + "unbreaking": 10, + "minecraft:frost_walker": { + "min": 2, + "max": 10 + } + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/rare.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/rare.json new file mode 100644 index 0000000..f7f5151 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/rare.json @@ -0,0 +1,133 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:snow_block" + }, + { + "type": "minecraft:item", + "name": "minecraft:carved_pumpkin", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:blue_ice" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:packed_ice", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:7,ic:rc,rc:ice_spark,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Ice Spark", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot an ice spark", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking,", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:mining_fatigue\",amplifier:1b,duration:60,show_particles:1b}],CustomPotionColor:1280417}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Frostbite Arrow", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 6 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/uncommon.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/uncommon.json new file mode 100644 index 0000000..fe7cdfe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/frozen/uncommon.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:snow_block" + }, + { + "type": "minecraft:item", + "name": "minecraft:carved_pumpkin", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:blue_ice" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:packed_ice", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:mining_fatigue\",amplifier:1b,duration:60,show_particles:1b}],CustomPotionColor:1280417}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Frostbite Arrow", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/legendary_gear.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/legendary_gear.json new file mode 100644 index 0000000..c0f242a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/legendary_gear.json @@ -0,0 +1,294 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_banner", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:32,ic:safety_banner,BlockEntityTag:{Patterns:[{Color:15,Pattern:\"cs\"},{Color:15,Pattern:\"ms\"}]}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Safety Banner", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Place down to clear a ", + "color": "gray", + "italic": false + }, + { + "text": "50x50 area from mob", + "color": "gray", + "italic": false + }, + { + "text": "spawning.", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + } + ] + }, + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_upgrade_smithing_template", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_helmet", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_chestplate", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_leggings", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_boots", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.01 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/common.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/common.json new file mode 100644 index 0000000..044abd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/common.json @@ -0,0 +1,70 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:raw_copper" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:pointed_dripstone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/epic.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/epic.json new file mode 100644 index 0000000..cb51ead --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/epic.json @@ -0,0 +1,94 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_shovel", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 20, + "max": 40 + }, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/legendary.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/legendary.json new file mode 100644 index 0000000..fcc1913 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/legendary.json @@ -0,0 +1,135 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_shovel", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 30, + "max": 50 + }, + "treasure": true + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": 6 + }, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:shulker_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:3b,duration:160,show_particles:1b},{id:\"minecraft:regeneration\",amplifier:2b,duration:160,show_particles:1b}],CustomPotionColor:8279072}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Limestone Brew", + "color": "gold", + "italic": false + } + ] + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/rare.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/rare.json new file mode 100644 index 0000000..1c24f88 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/rare.json @@ -0,0 +1,105 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_scrap", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_shovel", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 12, + "max": 24 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:dark_oak_wood", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/uncommon.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/uncommon.json new file mode 100644 index 0000000..f6f0376 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/limestone/uncommon.json @@ -0,0 +1,86 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:0b,duration:600,show_particles:1b}],CustomPotionColor:12089121}" + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:redstone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/common.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/common.json new file mode 100644 index 0000000..abe1550 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/common.json @@ -0,0 +1,43 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:fire_charge" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:magma_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:basalt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/epic.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/epic.json new file mode 100644 index 0000000..af29409 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/epic.json @@ -0,0 +1,126 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:fire_resistance\",amplifier:0b,duration:32000,show_particles:1b}],CustomPotionColor:16750111}" + }, + { + "function": "minecraft:set_name", + "entity": "this", + "name": [ + { + "text": "Potion of Very Long Fire Resistance", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:6,ic:rc,rc:fireball,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Fireball", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot a fireball ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking, ", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:raw_gold_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:raw_iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:obsidian", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/legendary.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/legendary.json new file mode 100644 index 0000000..c42c5ff --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/legendary.json @@ -0,0 +1,201 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:fire_resistance\",amplifier:0b,duration:32000,show_particles:1b}],CustomPotionColor:16750111}" + }, + { + "function": "minecraft:set_name", + "entity": "this", + "name": [ + { + "text": "Potion of Very Long Fire Resistance", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:6,ic:rc,rc:fireball,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Fireball", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot a fireball ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking, ", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_scrap", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_upgrade_smithing_template" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_leggings", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:molten_leggings,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:7,Operation:0,UUID:[I;452803494,566979291,-2035952766,-696136474],Slot:\"legs\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:3,Operation:0,UUID:[I;-149467581,-1673838308,-1996856098,762617824],Slot:\"legs\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:0.1,Operation:2,UUID:[I;-1681846517,-1972124314,-1220230951,-1909586073],Slot:\"legs\"}],Trim:{material:\"minecraft:copper\",pattern:\"minecraft:silence\"}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Molten Leggings", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "While having Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "melee damage is increased ", + "color": "gray", + "italic": false + }, + { + "text": "by 20%. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": 4, + "minecraft:blast_protection": 2, + "unbreaking": 10, + "minecraft:fire_protection": { + "min": 2, + "max": 10 + } + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:obsidian", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/rare.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/rare.json new file mode 100644 index 0000000..71d26b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/rare.json @@ -0,0 +1,125 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "item", + "weight": 1, + "name": "minecraft:potion", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:fire_resistance\",amplifier:0b,duration:32000,show_particles:1b}],CustomPotionColor:16750111}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Potion of Very Long Fire Resistance", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:6,ic:rc,rc:fireball,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Fireball", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot a fireball ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking, ", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:raw_gold_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:raw_iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:obsidian", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 6 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/uncommon.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/uncommon.json new file mode 100644 index 0000000..a26b0ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/molten/uncommon.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magma_cream" + }, + { + "type": "minecraft:item", + "name": "minecraft:lava_bucket", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:magma_block" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:basalt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:fire_resistance" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/rare_gear.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/rare_gear.json new file mode 100644 index 0000000..a246944 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/rare_gear.json @@ -0,0 +1,259 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/epic_gear", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:3,ic:rc,rc:enchant,ec:3}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Enchantlet Tier III", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 16 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:white_banner", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:32,ic:safety_banner,BlockEntityTag:{Patterns:[{Color:15,Pattern:\"cs\"},{Color:15,Pattern:\"ms\"}]}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Safety Banner", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Place down to clear a ", + "color": "gray", + "italic": false + }, + { + "text": "50x50 area from mob", + "color": "gray", + "italic": false + }, + { + "text": "spawning.", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + } + ] + }, + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_helmet", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_chestplate", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_leggings", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_boots", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_sword", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.3 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/common.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/common.json new file mode 100644 index 0000000..f418664 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/common.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:moss_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:mangrove_log", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:pufferfish_bucket", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:long_poison\"}" + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/epic.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/epic.json new file mode 100644 index 0000000..b92aeeb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/epic.json @@ -0,0 +1,142 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:brown_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:popped_chorus_fruit", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:weakness_cleanse,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Blessed Orb", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Removes Weakness upon ", + "color": "gray", + "italic": false + }, + { + "text": "infliction, consumes on ", + "color": "gray", + "italic": false + }, + { + "text": "use.", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:red_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:dandelion", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:emerald", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200,show_particles:1b}],CustomPotionColor:670482}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Toxic Arrow", + "color": "white", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/legendary.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/legendary.json new file mode 100644 index 0000000..d400b4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/legendary.json @@ -0,0 +1,214 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:popped_chorus_fruit", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:weakness_cleanse,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Blessed Orb", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Removes Weakness upon ", + "color": "gray", + "italic": false + }, + { + "text": "infliction, consumes on ", + "color": "gray", + "italic": false + }, + { + "text": "use.", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:red_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:sulfide_helmet,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;-525804044,1462090291,-1203648569,315279652],Slot:\"head\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:3,Operation:0,UUID:[I;553744405,-183547779,-1655907653,983158503],Slot:\"head\"},{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:0.1,Operation:1,UUID:[I;-709801626,-1253590576,-1817758826,-1616480218],Slot:\"head\"}],Trim:{material:\"minecraft:emerald\",pattern:\"minecraft:silence\"}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Sulfide Helmet", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Striking an enemy with the ", + "color": "gray", + "italic": false + }, + { + "text": "Poison effect has a 10% to ", + "color": "gray", + "italic": false + }, + { + "text": "double its current duration. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": 4, + "minecraft:blast_protection": 2, + "unbreaking": 10, + "aqua_affinity": 1, + "minecraft:respiration": { + "min": 2, + "max": 10 + } + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:dandelion", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:emerald", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200,show_particles:1b}],CustomPotionColor:670482}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Toxic Arrow", + "color": "white", + "italic": false + } + ] + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/rare.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/rare.json new file mode 100644 index 0000000..200dcb7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/rare.json @@ -0,0 +1,138 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:brown_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:popped_chorus_fruit", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:weakness_cleanse,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Blessed Orb", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Removes Weakness upon ", + "color": "gray", + "italic": false + }, + { + "text": "infliction, consumes on ", + "color": "gray", + "italic": false + }, + { + "text": "use.", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:red_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:dandelion", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:emerald", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_poison\"}" + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/uncommon.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/uncommon.json new file mode 100644 index 0000000..768cba6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/sulfide/uncommon.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:brown_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:red_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:dandelion", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:emerald", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_poison\"}" + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/uncommon_gear.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/uncommon_gear.json new file mode 100644 index 0000000..69cb9c9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/refs/uncommon_gear.json @@ -0,0 +1,194 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_helmet", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_chestplate", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_leggings", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_boots", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_sword", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.025 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_1.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_1.json new file mode 100644 index 0000000..44ba50c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_1.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:rc,rc:enchant,ec:1}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier I", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 6 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_2.json new file mode 100644 index 0000000..032cded --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_2.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_3.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_3.json new file mode 100644 index 0000000..45cd485 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_3.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:3,ic:rc,rc:enchant,ec:3}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier III", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 16 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_4.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_4.json new file mode 100644 index 0000000..66431f7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_4.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_5.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_5.json new file mode 100644 index 0000000..03fbd84 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/enchantlet_5.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/light_emblem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/light_emblem.json new file mode 100644 index 0000000..71c21e0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/light_emblem.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/magic_repair.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/magic_repair.json new file mode 100644 index 0000000..5be40d8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/return/magic_repair.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "set_nbt", + "tag": "{ic:rc,rc:magic_repair,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Magic Repair", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to fully repair ", + "color": "gray", + "italic": false + }, + { + "text": "the armor you are wearing. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/amethyst_geode.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/amethyst_geode.json new file mode 100644 index 0000000..ffdc8ff --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/amethyst_geode.json @@ -0,0 +1,408 @@ +{ + "pools": [ + { + "rolls": { + "min": 4, + "max": 8 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:rc,rc:magic_repair,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Magic Repair", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to fully repair ", + "color": "gray", + "italic": false + }, + { + "text": "the armor you are wearing. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:amethyst_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:amethyst_shard", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.125 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:spyglass", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:magic_spyglass,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Magic Spyglass", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Looking at a mob will ", + "color": "gray", + "italic": false + }, + { + "text": "return its health. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.15 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.06125 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/deep_dark_temple.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/deep_dark_temple.json new file mode 100644 index 0000000..e09e18e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/deep_dark_temple.json @@ -0,0 +1,469 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 6 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:rc,rc:enchant,ec:1}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier I", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 6 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.005 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:3,ic:rc,rc:enchant,ec:3}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier III", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 16 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:bone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.125 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:1,ic:sonic_bow}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Supersonic Bow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Bow is chargable and will gain ", + "color": "gray", + "italic": false + }, + { + "text": "momentum the longer charged ", + "color": "gray", + "italic": false + }, + { + "text": "gaining pierce at charge level ", + "color": "gray", + "italic": false + }, + { + "text": "2 or higher. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "If an emnemy is close while ", + "color": "gray", + "italic": false + }, + { + "text": "shooting a charged shot, an ", + "color": "gray", + "italic": false + }, + { + "text": "explosion occurs instead. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.02 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/dinosaur.json new file mode 100644 index 0000000..f3a4e7a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/dinosaur.json @@ -0,0 +1,369 @@ +{ + "pools": [ + { + "rolls": { + "min": 5, + "max": 10 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.01 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:calcite", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:skeleton_skull", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:bone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.0825 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.075 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/frozen_robot.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/frozen_robot.json new file mode 100644 index 0000000..ae5bea0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/frozen_robot.json @@ -0,0 +1,442 @@ +{ + "pools": [ + { + "rolls": { + "min": 5, + "max": 10 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.006 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:blue_ice", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:skeleton_skull", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:bone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:7,ic:rc,rc:ice_spark,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Ice Spark", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot an ice spark", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking,", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.06125 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crossbow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:1,ic:icicle_crossbow}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Icicle Crossbow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Projectiles travel 3 times", + "color": "gray", + "italic": false + }, + { + "text": "faster, dealing more damage. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.025 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/knuckle_trap.json new file mode 100644 index 0000000..3054831 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/knuckle_trap.json @@ -0,0 +1,465 @@ +{ + "pools": [ + { + "rolls": { + "min": 4, + "max": 8 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_scrap" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:magma_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.01 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:skeleton_skull", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:6,ic:rc,rc:fireball,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Fireball", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot a fireball ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking, ", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:fire_charge", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.0825 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brush", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.075 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/limestone_houses.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/limestone_houses.json new file mode 100644 index 0000000..5bfa778 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/limestone_houses.json @@ -0,0 +1,377 @@ +{ + "pools": [ + { + "rolls": { + "min": 5, + "max": 10 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:dripstone_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:skeleton_skull", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shulker_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.005 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.06125 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.03 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/sulfide_huts.json new file mode 100644 index 0000000..e7563b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/structures/sulfide_huts.json @@ -0,0 +1,653 @@ +{ + "pools": [ + { + "rolls": { + "min": 4, + "max": 8 + }, + "entries": [ + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:glow_lichen", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 6, + "name": "minecraft:glass_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.004 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:scute", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:glow_berries", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:tall_grass", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:regeneration", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:absorption", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:poison", + "duration": { + "min": 80, + "max": 160 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:strength", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:speed", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:health_boost", + "duration": { + "min": 20, + "max": 40 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:instant_health", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:water_breathing", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:invisibility", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:haste", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:poison", + "duration": { + "min": 80, + "max": 160 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:poison", + "duration": { + "min": 80, + "max": 160 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:poison", + "duration": { + "min": 80, + "max": 160 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.06125 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.025 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.025 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/drowned.json new file mode 100644 index 0000000..1a58ee4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/enderman.json new file mode 100644 index 0000000..6d595fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/iron_golem.json new file mode 100644 index 0000000..ff7b19a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/pillager.json new file mode 100644 index 0000000..608190a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/ravager.json new file mode 100644 index 0000000..6c5f7d3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/skeleton.json new file mode 100644 index 0000000..1d14d81 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/slime.json new file mode 100644 index 0000000..8da8ca6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/spider.json new file mode 100644 index 0000000..cde253c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/vindicator.json new file mode 100644 index 0000000..c86ec8c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/wither_skeleton.json new file mode 100644 index 0000000..390ad21 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/zombie.json new file mode 100644 index 0000000..9098fd3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/zombified_piglin.json new file mode 100644 index 0000000..e36548a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/creeper.json new file mode 100644 index 0000000..170854a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/drowned.json new file mode 100644 index 0000000..ba5dd93 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/enderman.json new file mode 100644 index 0000000..2cfd240 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/evoker.json new file mode 100644 index 0000000..50a047d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/iron_golem.json new file mode 100644 index 0000000..f564f89 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/pillager.json new file mode 100644 index 0000000..a73352c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/ravager.json new file mode 100644 index 0000000..bf54c1c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/skeleton.json new file mode 100644 index 0000000..98e60db --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/slime.json new file mode 100644 index 0000000..c5503a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/spider.json new file mode 100644 index 0000000..cfc3bf0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/vindicator.json new file mode 100644 index 0000000..024de21 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/witch.json new file mode 100644 index 0000000..078c04f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/witch.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/wither_skeleton.json new file mode 100644 index 0000000..8672946 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/zombie.json new file mode 100644 index 0000000..43036d5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/zombified_piglin.json new file mode 100644 index 0000000..039b7d7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/creeper.json new file mode 100644 index 0000000..8df0d31 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/drowned.json new file mode 100644 index 0000000..fac3052 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/drowned.json @@ -0,0 +1,240 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/enderman.json new file mode 100644 index 0000000..c88547a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/enderman.json @@ -0,0 +1,180 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/evoker.json new file mode 100644 index 0000000..36c7e05 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/iron_golem.json new file mode 100644 index 0000000..2899b22 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/pillager.json new file mode 100644 index 0000000..cb5dbfe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/pillager.json @@ -0,0 +1,78 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/ravager.json new file mode 100644 index 0000000..a33d4da --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/skeleton.json new file mode 100644 index 0000000..c43c0ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/skeleton.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/slime.json new file mode 100644 index 0000000..140a4fc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/spider.json new file mode 100644 index 0000000..4fa90ba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/vindicator.json new file mode 100644 index 0000000..8b4351a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/vindicator.json @@ -0,0 +1,244 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/witch.json new file mode 100644 index 0000000..b020078 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/wither_skeleton.json new file mode 100644 index 0000000..936a351 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/wither_skeleton.json @@ -0,0 +1,161 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/zombie.json new file mode 100644 index 0000000..4c56baf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/zombified_piglin.json new file mode 100644 index 0000000..9facf93 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/legendary/zombified_piglin.json @@ -0,0 +1,146 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/drowned.json new file mode 100644 index 0000000..7ff9814 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/enderman.json new file mode 100644 index 0000000..ceb81a6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/evoker.json new file mode 100644 index 0000000..2f86375 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/iron_golem.json new file mode 100644 index 0000000..0b7f30c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/pillager.json new file mode 100644 index 0000000..be71cb5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/ravager.json new file mode 100644 index 0000000..c5db39c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/skeleton.json new file mode 100644 index 0000000..4004c2a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/slime.json new file mode 100644 index 0000000..3a43437 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/spider.json new file mode 100644 index 0000000..67b30e3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/vindicator.json new file mode 100644 index 0000000..c7633c4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/witch.json new file mode 100644 index 0000000..f208412 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/wither_skeleton.json new file mode 100644 index 0000000..ba3864f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/zombie.json new file mode 100644 index 0000000..758bad3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/zombified_piglin.json new file mode 100644 index 0000000..6170f53 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/drowned.json new file mode 100644 index 0000000..5c399b4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/enderman.json new file mode 100644 index 0000000..24b8d6b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/iron_golem.json new file mode 100644 index 0000000..dc2fe18 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/pillager.json new file mode 100644 index 0000000..2cc74eb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/ravager.json new file mode 100644 index 0000000..1eb4437 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/skeleton.json new file mode 100644 index 0000000..380cdf9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/slime.json new file mode 100644 index 0000000..54d02a0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/spider.json new file mode 100644 index 0000000..f389af8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/vindicator.json new file mode 100644 index 0000000..b5b7701 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/wither_skeleton.json new file mode 100644 index 0000000..6cca520 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/zombie.json new file mode 100644 index 0000000..4ab6aec --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/zombified_piglin.json new file mode 100644 index 0000000..5f71b74 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/loot_tables/sulfide/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/any_armor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/any_armor.json new file mode 100644 index 0000000..7aa4e57 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/any_armor.json @@ -0,0 +1,50 @@ +{ + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "feet": { + "tag": "minecraft:trimmable_armor" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "legs": { + "tag": "minecraft:trimmable_armor" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "head": { + "tag": "minecraft:trimmable_armor" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/deeprock_chestplate.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/deeprock_chestplate.json new file mode 100644 index 0000000..0925ce0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/deeprock_chestplate.json @@ -0,0 +1,13 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "chest": { + "nbt": "{ic:deeprock_chestplate}" + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/frozen_boots.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/frozen_boots.json new file mode 100644 index 0000000..fcf3bb6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/frozen_boots.json @@ -0,0 +1,13 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "feet": { + "nbt": "{ic:frozen_boots}" + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/molten_leggings.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/molten_leggings.json new file mode 100644 index 0000000..6c522d0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/molten_leggings.json @@ -0,0 +1,13 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "legs": { + "nbt": "{ic:molten_leggings}" + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/sulfide_helmet.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/sulfide_helmet.json new file mode 100644 index 0000000..e561f7f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/armor/sulfide_helmet.json @@ -0,0 +1,13 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "head": { + "nbt": "{ic:sulfide_helmet}" + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/biomes.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/biomes.json new file mode 100644 index 0000000..849a124 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/biomes.json @@ -0,0 +1,83 @@ +{ + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "minecraft:deep_dark" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:deeprock_caverns" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:amethyst_caves" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:limestone_grotto" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:sulfide_caves" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:frozen_caves" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:molten_caves" + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantable.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantable.json new file mode 100644 index 0000000..b4e9a66 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantable.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:enchantable" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet.json new file mode 100644 index 0000000..ec0f05e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet.json @@ -0,0 +1,13 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_1.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_1.json new file mode 100644 index 0000000..57eba48 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_1.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ec:1}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_2.json new file mode 100644 index 0000000..e46537b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_2.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ec:2}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_3.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_3.json new file mode 100644 index 0000000..3ffd583 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_3.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ec:3}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_4.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_4.json new file mode 100644 index 0000000..52cfcce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_4.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ec:4}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_5.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_5.json new file mode 100644 index 0000000..08ba9ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/enchantlet_5.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ec:5}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/is_enchanted.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/is_enchanted.json new file mode 100644 index 0000000..f85fca3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/is_enchanted.json @@ -0,0 +1,18 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "enchantments": [ + { + "levels": { + "min": 1 + } + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/mainhand.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/mainhand.json new file mode 100644 index 0000000..4f70a46 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/mainhand.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{rc:enchant}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_1.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_1.json new file mode 100644 index 0000000..3687abf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_1.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ec:1}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_2.json new file mode 100644 index 0000000..10a4c5f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_2.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ec:2}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_3.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_3.json new file mode 100644 index 0000000..65b19b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_3.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ec:3}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_4.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_4.json new file mode 100644 index 0000000..9871b3e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_4.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ec:4}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_5.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_5.json new file mode 100644 index 0000000..59f98fb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/off_5.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ec:5}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/offhand.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/offhand.json new file mode 100644 index 0000000..2713d21 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/offhand.json @@ -0,0 +1,29 @@ +[ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ] + } + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{rc:enchant}" + } + } + } + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/too_much.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/too_much.json new file mode 100644 index 0000000..fd611f8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/enchantlet/too_much.json @@ -0,0 +1,15 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:enchantable", + "count": { + "min": 2 + } + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/firework_offhand.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/firework_offhand.json new file mode 100644 index 0000000..aff6b00 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/firework_offhand.json @@ -0,0 +1,14 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:firework_rocket" + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/match_id.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/match_id.json new file mode 100644 index 0000000..6c103aa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/match_id.json @@ -0,0 +1,26 @@ +{ + "condition": "minecraft:value_check", + "value": { + "type": "minecraft:score", + "target": "this", + "score": "ic.id" + }, + "range": { + "min": { + "type": "minecraft:score", + "target": { + "type": "minecraft:fixed", + "name": "#id" + }, + "score": "ic.id" + }, + "max": { + "type": "minecraft:score", + "target": { + "type": "minecraft:fixed", + "name": "#id" + }, + "score": "ic.id" + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/not_setup.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/not_setup.json new file mode 100644 index 0000000..4ffca08 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/not_setup.json @@ -0,0 +1,9 @@ +{ + "condition": "minecraft:value_check", + "value": { + "type": "minecraft:score", + "target": "this", + "score": "ic.id" + }, + "range": 0 +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/00625.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/00625.json new file mode 100644 index 0000000..5f8ba77 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/00625.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.00625 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/0085.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/0085.json new file mode 100644 index 0000000..17f180f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/0085.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.0085 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/01.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/01.json new file mode 100644 index 0000000..e58db8d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/01.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.01 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/10.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/10.json new file mode 100644 index 0000000..d78929a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/10.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.1 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/20.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/20.json new file mode 100644 index 0000000..1f7174a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/20.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.2 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/50.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/50.json new file mode 100644 index 0000000..3e45c15 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/percent/50.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.5 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/player/ground.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/player/ground.json new file mode 100644 index 0000000..1b4170f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/player/ground.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "stepping_on": { + "block": { + "tag": "infinity_cave:all_but_air" + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/_rc_check.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/_rc_check.json new file mode 100644 index 0000000..5a0c0d4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/_rc_check.json @@ -0,0 +1,35 @@ +[ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:rc}", + "enchantments": [ + {} + ] + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ic:rc}", + "enchantments": [ + {} + ] + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_off_rc.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_off_rc.json new file mode 100644 index 0000000..29500b7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_off_rc.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "offhand": { + "nbt": "{ic:rc}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc.json new file mode 100644 index 0000000..7be2457 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{ic:rc}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_enchant.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_enchant.json new file mode 100644 index 0000000..e3e5036 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_enchant.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{rc:enchant}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_fireball.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_fireball.json new file mode 100644 index 0000000..e44cc45 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_fireball.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{rc:fireball}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_ice_spark.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_ice_spark.json new file mode 100644 index 0000000..55ba87e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_ice_spark.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{rc:ice_spark}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_magic_repair.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_magic_repair.json new file mode 100644 index 0000000..cd35612 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_magic_repair.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{rc:magic_repair}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_teleport.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_teleport.json new file mode 100644 index 0000000..9bf3784 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/detect_rc_teleport.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{rc:teleport}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/no_rc.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/no_rc.json new file mode 100644 index 0000000..d55519d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/rc/no_rc.json @@ -0,0 +1,19 @@ +{ + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "enchantments": [ + {} + ] + } + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/target.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/target.json new file mode 100644 index 0000000..9878274 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/target.json @@ -0,0 +1,9 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "targeted_entity": { + "type": "minecraft:player" + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/acid_shield_main.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/acid_shield_main.json new file mode 100644 index 0000000..d35e4a1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/acid_shield_main.json @@ -0,0 +1,18 @@ +[ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:acid_shield}" + } + } + } + }, + { + "condition": "minecraft:random_chance", + "chance": 0.625 + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/acid_shield_off.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/acid_shield_off.json new file mode 100644 index 0000000..069d3de --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/acid_shield_off.json @@ -0,0 +1,18 @@ +[ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ic:acid_shield}" + } + } + } + }, + { + "condition": "minecraft:random_chance", + "chance": 0.625 + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/molten_main.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/molten_main.json new file mode 100644 index 0000000..14b221f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/molten_main.json @@ -0,0 +1,18 @@ +[ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:molten_hammer}" + } + } + } + }, + { + "condition": "minecraft:random_chance", + "chance": 0.00625 + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/molten_off.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/molten_off.json new file mode 100644 index 0000000..aedd6dc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/molten_off.json @@ -0,0 +1,18 @@ +[ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ic:molten_hammer}" + } + } + } + }, + { + "condition": "minecraft:random_chance", + "chance": 0.00625 + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/torpedo_harpoon_main.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/torpedo_harpoon_main.json new file mode 100644 index 0000000..73315c4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/torpedo_harpoon_main.json @@ -0,0 +1,14 @@ + + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:torpedo_harpoon}" + } + } + } + } + + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/torpedo_harpoon_off.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/torpedo_harpoon_off.json new file mode 100644 index 0000000..919357e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/predicates/weapons/torpedo_harpoon_off.json @@ -0,0 +1,14 @@ + + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ic:torpedo_harpoon}" + } + } + } + } + + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/amethyst_altar.nbt b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/amethyst_altar.nbt new file mode 100644 index 0000000..5d1c8b0 Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/amethyst_altar.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/amethyst_geode.nbt b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/amethyst_geode.nbt new file mode 100644 index 0000000..f10157c Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/amethyst_geode.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/deep_dark_temple.nbt b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/deep_dark_temple.nbt new file mode 100644 index 0000000..840a0bd Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/deep_dark_temple.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/dinosaur.nbt b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/dinosaur.nbt new file mode 100644 index 0000000..f02caa6 Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/dinosaur.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/frozen_robot.nbt b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/frozen_robot.nbt new file mode 100644 index 0000000..f26ffe2 Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/frozen_robot.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/knuckle_trap.nbt b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/knuckle_trap.nbt new file mode 100644 index 0000000..e0b575a Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/knuckle_trap.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/limestone_houses.nbt b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/limestone_houses.nbt new file mode 100644 index 0000000..a1bbf38 Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/limestone_houses.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/pillar.nbt b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/pillar.nbt new file mode 100644 index 0000000..ef8708e Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/pillar.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/sulfide_huts.nbt b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/sulfide_huts.nbt new file mode 100644 index 0000000..667b2ff Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/structures/sulfide_huts.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_air.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_air.json new file mode 100644 index 0000000..2c10660 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_air.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:lava","minecraft:acacia_door","minecraft:acacia_fence","minecraft:acacia_fence_gate","minecraft:acacia_leaves","minecraft:acacia_log","minecraft:acacia_planks","minecraft:acacia_sapling","minecraft:acacia_sign","minecraft:acacia_slab","minecraft:acacia_stairs","minecraft:acacia_trapdoor","minecraft:acacia_wall_sign","minecraft:acacia_wood","minecraft:activator_rail","minecraft:allium","minecraft:amethyst_block","minecraft:amethyst_cluster","minecraft:ancient_debris","minecraft:andesite","minecraft:andesite_slab","minecraft:andesite_stairs","minecraft:andesite_wall","minecraft:anvil","minecraft:attached_melon_stem","minecraft:attached_pumpkin_stem","minecraft:azalea","minecraft:azalea_leaves","minecraft:azure_bluet","minecraft:bamboo","minecraft:bamboo_sapling","minecraft:barrel","minecraft:barrier","minecraft:basalt","minecraft:beacon","minecraft:bedrock","minecraft:bee_nest","minecraft:beehive","minecraft:birch_door","minecraft:birch_fence","minecraft:birch_fence_gate","minecraft:birch_leaves","minecraft:birch_log","minecraft:birch_planks","minecraft:birch_pressure_plate","minecraft:birch_sapling","minecraft:birch_sign","minecraft:birch_slab","minecraft:birch_stairs","minecraft:birch_trapdoor","minecraft:birch_wall_sign","minecraft:birch_wood","minecraft:black_banner","minecraft:black_bed","minecraft:black_candle_cake","minecraft:black_carpet","minecraft:black_concrete","minecraft:black_concrete_powder","minecraft:black_glazed_terracotta","minecraft:black_shulker_box","minecraft:black_stained_glass","minecraft:black_stained_glass_pane","minecraft:black_terracotta","minecraft:black_wall_banner","minecraft:black_wool","minecraft:blackstone","minecraft:blackstone_slab","minecraft:blackstone_stairs","minecraft:blackstone_wall","minecraft:blast_furnace","minecraft:blue_banner","minecraft:blue_bed","minecraft:blue_candle_cake","minecraft:blue_carpet","minecraft:blue_concrete","minecraft:blue_concrete_powder","minecraft:blue_glazed_terracotta","minecraft:blue_ice","minecraft:blue_orchid","minecraft:blue_shulker_box","minecraft:blue_stained_glass","minecraft:blue_stained_glass_pane","minecraft:blue_terracotta","minecraft:blue_wall_banner","minecraft:blue_wool","minecraft:bone_block","minecraft:bookshelf","minecraft:brain_coral","minecraft:brain_coral_block","minecraft:brain_coral_fan","minecraft:brain_coral_wall_fan","minecraft:brewing_stand","minecraft:brick_slab","minecraft:brick_stairs","minecraft:brick_wall","minecraft:bricks","minecraft:brown_banner","minecraft:brown_bed","minecraft:brown_candle_cake","minecraft:brown_carpet","minecraft:brown_concrete","minecraft:brown_concrete_powder","minecraft:brown_glazed_terracotta","minecraft:brown_mushroom","minecraft:brown_mushroom_block","minecraft:brown_shulker_box","minecraft:brown_stained_glass","minecraft:brown_stained_glass_pane","minecraft:brown_terracotta","minecraft:brown_wall_banner","minecraft:brown_wool","minecraft:bubble_column","minecraft:bubble_coral","minecraft:bubble_coral_block","minecraft:bubble_coral_fan","minecraft:bubble_coral_wall_fan","minecraft:budding_amethyst","minecraft:cactus","minecraft:cake","minecraft:calcite","minecraft:campfire","minecraft:candle_cake","minecraft:carrots","minecraft:cartography_table","minecraft:carved_pumpkin","minecraft:cauldron","minecraft:chain","minecraft:chain_command_block","minecraft:chest","minecraft:chipped_anvil","minecraft:chiseled_deepslate","minecraft:chiseled_nether_bricks","minecraft:chiseled_polished_blackstone","minecraft:chiseled_quartz_block","minecraft:chiseled_red_sandstone","minecraft:chiseled_sandstone","minecraft:chiseled_stone_bricks","minecraft:chorus_flower","minecraft:chorus_plant","minecraft:clay","minecraft:coal_block","minecraft:coal_ore","minecraft:coarse_dirt","minecraft:cobbled_deepslate","minecraft:cobbled_deepslate_slab","minecraft:cobbled_deepslate_stairs","minecraft:cobbled_deepslate_wall","minecraft:cobblestone","minecraft:cobblestone_slab","minecraft:cobblestone_stairs","minecraft:cobblestone_wall","minecraft:cocoa","minecraft:command_block","minecraft:comparator","minecraft:composter","minecraft:conduit","minecraft:copper_block","minecraft:copper_ore","minecraft:cracked_deepslate_bricks","minecraft:cracked_deepslate_tiles","minecraft:cracked_nether_bricks","minecraft:cracked_polished_blackstone_bricks","minecraft:cracked_stone_bricks","minecraft:crafting_table","minecraft:creeper_head","minecraft:creeper_wall_head","minecraft:crimson_door","minecraft:crimson_fence","minecraft:crimson_fence_gate","minecraft:crimson_fungus","minecraft:crimson_hyphae","minecraft:crimson_nylium","minecraft:crimson_planks","minecraft:crimson_pressure_plate","minecraft:crimson_roots","minecraft:crimson_sign","minecraft:crimson_slab","minecraft:crimson_stairs","minecraft:crimson_stem","minecraft:crimson_trapdoor","minecraft:crimson_wall_sign","minecraft:crying_obsidian","minecraft:cut_copper","minecraft:cut_copper_slab","minecraft:cut_copper_stairs","minecraft:cut_red_sandstone","minecraft:cut_red_sandstone_slab","minecraft:cut_sandstone","minecraft:cut_sandstone_slab","minecraft:cyan_banner","minecraft:cyan_bed","minecraft:cyan_candle_cake","minecraft:cyan_carpet","minecraft:cyan_concrete","minecraft:cyan_concrete_powder","minecraft:cyan_glazed_terracotta","minecraft:cyan_shulker_box","minecraft:cyan_stained_glass","minecraft:cyan_stained_glass_pane","minecraft:cyan_terracotta","minecraft:cyan_wall_banner","minecraft:cyan_wool","minecraft:damaged_anvil","minecraft:dandelion","minecraft:dark_oak_door","minecraft:dark_oak_fence","minecraft:dark_oak_fence_gate","minecraft:dark_oak_leaves","minecraft:dark_oak_log","minecraft:dark_oak_planks","minecraft:dark_oak_pressure_plate","minecraft:dark_oak_sapling","minecraft:dark_oak_sign","minecraft:dark_oak_slab","minecraft:dark_oak_stairs","minecraft:dark_oak_trapdoor","minecraft:dark_oak_wall_sign","minecraft:dark_oak_wood","minecraft:dark_prismarine","minecraft:dark_prismarine_slab","minecraft:dark_prismarine_stairs","minecraft:daylight_detector","minecraft:dead_brain_coral","minecraft:dead_brain_coral_block","minecraft:dead_brain_coral_fan","minecraft:dead_brain_coral_wall_fan","minecraft:dead_bubble_coral","minecraft:dead_bubble_coral_block","minecraft:dead_bubble_coral_fan","minecraft:dead_fire_coral_block","minecraft:dead_fire_coral_fan","minecraft:dead_fire_coral_wall_fan","minecraft:dead_horn_coral","minecraft:dead_horn_coral_block","minecraft:dead_horn_coral_fan","minecraft:dead_horn_coral_wall_fan","minecraft:dead_tube_coral","minecraft:dead_tube_coral_block","minecraft:dead_tube_coral_fan","minecraft:dead_tube_coral_wall_fan","minecraft:deepslate","minecraft:deepslate_brick_slab","minecraft:deepslate_brick_stairs","minecraft:deepslate_brick_wall","minecraft:deepslate_bricks","minecraft:deepslate_coal_ore","minecraft:deepslate_copper_ore","minecraft:deepslate_diamond_ore","minecraft:deepslate_emerald_ore","minecraft:deepslate_gold_ore","minecraft:deepslate_iron_ore","minecraft:deepslate_lapis_ore","minecraft:deepslate_redstone_ore","minecraft:deepslate_tile_slab","minecraft:deepslate_tile_stairs","minecraft:deepslate_tile_wall","minecraft:deepslate_tiles","minecraft:detector_rail","minecraft:diamond_block","minecraft:diamond_ore","minecraft:diorite","minecraft:diorite_slab","minecraft:diorite_stairs","minecraft:diorite_wall","minecraft:dirt","minecraft:dirt_path","minecraft:dispenser","minecraft:dragon_egg","minecraft:dragon_head","minecraft:dragon_wall_head","minecraft:dried_kelp_block","minecraft:dripstone_block","minecraft:dropper","minecraft:emerald_block","minecraft:emerald_ore","minecraft:enchanting_table","minecraft:end_gateway","minecraft:end_portal","minecraft:end_portal_frame","minecraft:end_rod","minecraft:end_stone","minecraft:end_stone_brick_slab","minecraft:end_stone_brick_stairs","minecraft:end_stone_brick_wall","minecraft:end_stone_bricks","minecraft:ender_chest","minecraft:exposed_copper","minecraft:exposed_cut_copper","minecraft:exposed_cut_copper_slab","minecraft:exposed_cut_copper_stairs","minecraft:farmland","minecraft:fire_coral","minecraft:fire_coral_block","minecraft:fire_coral_fan","minecraft:fire_coral_wall_fan","minecraft:fletching_table","minecraft:flowering_azalea","minecraft:flowering_azalea_leaves","minecraft:frosted_ice","minecraft:furnace","minecraft:gilded_blackstone","minecraft:glass","minecraft:glass_pane","minecraft:glowstone","minecraft:gold_block","minecraft:gold_ore","minecraft:granite","minecraft:granite_slab","minecraft:granite_stairs","minecraft:granite_wall","minecraft:grass_block","minecraft:gravel","minecraft:gray_banner","minecraft:gray_bed","minecraft:gray_candle_cake","minecraft:gray_carpet","minecraft:gray_concrete","minecraft:gray_concrete_powder","minecraft:gray_glazed_terracotta","minecraft:gray_shulker_box","minecraft:gray_stained_glass","minecraft:gray_stained_glass_pane","minecraft:gray_terracotta","minecraft:gray_wall_banner","minecraft:gray_wool","minecraft:green_banner","minecraft:green_bed","minecraft:green_candle_cake","minecraft:green_carpet","minecraft:green_concrete","minecraft:green_concrete_powder","minecraft:green_glazed_terracotta","minecraft:green_shulker_box","minecraft:green_stained_glass","minecraft:green_stained_glass_pane","minecraft:green_terracotta","minecraft:green_wall_banner","minecraft:green_wool","minecraft:grindstone","minecraft:hanging_roots","minecraft:hay_block","minecraft:heavy_weighted_pressure_plate","minecraft:honey_block","minecraft:honeycomb_block","minecraft:hopper","minecraft:horn_coral","minecraft:horn_coral_block","minecraft:horn_coral_fan","minecraft:horn_coral_wall_fan","minecraft:ice","minecraft:infested_chiseled_stone_bricks","minecraft:infested_cobblestone","minecraft:infested_cracked_stone_bricks","minecraft:infested_deepslate","minecraft:infested_mossy_stone_bricks","minecraft:infested_stone","minecraft:infested_stone_bricks","minecraft:iron_bars","minecraft:iron_block","minecraft:iron_door","minecraft:iron_ore","minecraft:iron_trapdoor","minecraft:jack_o_lantern","minecraft:jigsaw","minecraft:jukebox","minecraft:jungle_door","minecraft:jungle_fence","minecraft:jungle_fence_gate","minecraft:jungle_leaves","minecraft:jungle_log","minecraft:jungle_planks","minecraft:jungle_pressure_plate","minecraft:jungle_sapling","minecraft:jungle_sign","minecraft:jungle_slab","minecraft:jungle_stairs","minecraft:jungle_trapdoor","minecraft:jungle_wall_sign","minecraft:jungle_wood","minecraft:kelp","minecraft:kelp_plant","minecraft:ladder","minecraft:lantern","minecraft:lapis_block","minecraft:lapis_ore","minecraft:large_amethyst_bud","minecraft:large_fern","minecraft:lava_cauldron","minecraft:lectern","minecraft:lever","minecraft:light","minecraft:light_blue_banner","minecraft:light_blue_bed","minecraft:light_blue_candle_cake","minecraft:light_blue_carpet","minecraft:light_blue_concrete","minecraft:light_blue_concrete_powder","minecraft:light_blue_glazed_terracotta","minecraft:light_blue_shulker_box","minecraft:light_blue_stained_glass","minecraft:light_blue_stained_glass_pane","minecraft:light_blue_terracotta","minecraft:light_blue_wall_banner","minecraft:light_blue_wool","minecraft:light_gray_banner","minecraft:light_gray_bed","minecraft:light_gray_candle_cake","minecraft:light_gray_carpet","minecraft:light_gray_concrete","minecraft:light_gray_concrete_powder","minecraft:light_gray_glazed_terracotta","minecraft:light_gray_shulker_box","minecraft:light_gray_stained_glass","minecraft:light_gray_stained_glass_pane","minecraft:light_gray_terracotta","minecraft:light_gray_wall_banner","minecraft:light_gray_wool","minecraft:light_weighted_pressure_plate","minecraft:lightning_rod","minecraft:lilac","minecraft:lily_of_the_valley","minecraft:lily_pad","minecraft:lime_banner","minecraft:lime_bed","minecraft:lime_candle_cake","minecraft:lime_carpet","minecraft:lime_concrete","minecraft:lime_concrete_powder","minecraft:lime_glazed_terracotta","minecraft:lime_shulker_box","minecraft:lime_stained_glass","minecraft:lime_stained_glass_pane","minecraft:lime_terracotta","minecraft:lime_wall_banner","minecraft:lime_wool","minecraft:lodestone","minecraft:loom","minecraft:magenta_banner","minecraft:magenta_bed","minecraft:magenta_candle_cake","minecraft:magenta_carpet","minecraft:magenta_concrete","minecraft:magenta_concrete_powder","minecraft:magenta_glazed_terracotta","minecraft:magenta_shulker_box","minecraft:magenta_stained_glass","minecraft:magenta_stained_glass_pane","minecraft:magenta_terracotta","minecraft:magenta_wall_banner","minecraft:magenta_wool","minecraft:magma_block","minecraft:medium_amethyst_bud","minecraft:melon","minecraft:melon_stem","minecraft:moss_block","minecraft:moss_carpet","minecraft:mossy_cobblestone","minecraft:mossy_cobblestone_slab","minecraft:mossy_cobblestone_stairs","minecraft:mossy_cobblestone_wall","minecraft:mossy_stone_brick_slab","minecraft:mossy_stone_brick_stairs","minecraft:mossy_stone_brick_wall","minecraft:mossy_stone_bricks","minecraft:moving_piston","minecraft:mushroom_stem","minecraft:mycelium","minecraft:nether_brick_fence","minecraft:nether_brick_slab","minecraft:nether_brick_stairs","minecraft:nether_brick_wall","minecraft:nether_bricks","minecraft:nether_gold_ore","minecraft:nether_portal","minecraft:nether_quartz_ore","minecraft:nether_sprouts","minecraft:nether_wart","minecraft:nether_wart_block","minecraft:netherite_block","minecraft:netherrack","minecraft:note_block","minecraft:oak_door","minecraft:oak_fence","minecraft:oak_fence_gate","minecraft:oak_leaves","minecraft:oak_log","minecraft:oak_planks","minecraft:oak_sapling","minecraft:oak_sign","minecraft:oak_slab","minecraft:oak_stairs","minecraft:oak_trapdoor","minecraft:oak_wall_sign","minecraft:oak_wood","minecraft:observer","minecraft:obsidian","minecraft:orange_banner","minecraft:orange_bed","minecraft:orange_candle_cake","minecraft:orange_carpet","minecraft:orange_concrete","minecraft:orange_concrete_powder","minecraft:orange_glazed_terracotta","minecraft:orange_shulker_box","minecraft:orange_stained_glass","minecraft:orange_stained_glass_pane","minecraft:orange_terracotta","minecraft:orange_tulip","minecraft:orange_wall_banner","minecraft:orange_wool","minecraft:oxeye_daisy","minecraft:oxidized_copper","minecraft:oxidized_cut_copper","minecraft:oxidized_cut_copper_slab","minecraft:oxidized_cut_copper_stairs","minecraft:packed_ice","minecraft:peony","minecraft:petrified_oak_slab","minecraft:pink_banner","minecraft:pink_bed","minecraft:pink_candle_cake","minecraft:pink_carpet","minecraft:pink_concrete","minecraft:pink_concrete_powder","minecraft:pink_glazed_terracotta","minecraft:pink_shulker_box","minecraft:pink_stained_glass","minecraft:pink_stained_glass_pane","minecraft:pink_terracotta","minecraft:pink_tulip","minecraft:pink_wall_banner","minecraft:pink_wool","minecraft:piston","minecraft:piston_head","minecraft:player_head","minecraft:player_wall_head","minecraft:podzol","minecraft:polished_andesite","minecraft:polished_andesite_slab","minecraft:polished_andesite_stairs","minecraft:polished_basalt","minecraft:polished_blackstone","minecraft:polished_blackstone_brick_slab","minecraft:polished_blackstone_brick_stairs","minecraft:polished_blackstone_brick_wall","minecraft:polished_blackstone_bricks","minecraft:polished_blackstone_slab","minecraft:polished_blackstone_stairs","minecraft:polished_blackstone_wall","minecraft:polished_deepslate","minecraft:polished_deepslate_slab","minecraft:polished_deepslate_stairs","minecraft:polished_deepslate_wall","minecraft:polished_diorite","minecraft:polished_diorite_slab","minecraft:polished_diorite_stairs","minecraft:polished_granite","minecraft:polished_granite_slab","minecraft:polished_granite_stairs","minecraft:poppy","minecraft:potatoes","minecraft:potted_acacia_sapling","minecraft:potted_allium","minecraft:potted_azalea_bush","minecraft:potted_azure_bluet","minecraft:potted_bamboo","minecraft:potted_birch_sapling","minecraft:potted_blue_orchid","minecraft:potted_brown_mushroom","minecraft:potted_cactus","minecraft:potted_crimson_fungus","minecraft:potted_crimson_roots","minecraft:potted_dandelion","minecraft:potted_dark_oak_sapling","minecraft:potted_dead_bush","minecraft:potted_fern","minecraft:potted_flowering_azalea_bush","minecraft:potted_jungle_sapling","minecraft:potted_lily_of_the_valley","minecraft:potted_oak_sapling","minecraft:potted_orange_tulip","minecraft:potted_oxeye_daisy","minecraft:potted_pink_tulip","minecraft:potted_poppy","minecraft:potted_red_mushroom","minecraft:potted_red_tulip","minecraft:potted_spruce_sapling","minecraft:potted_warped_fungus","minecraft:potted_warped_roots","minecraft:potted_white_tulip","minecraft:potted_wither_rose","minecraft:powder_snow","minecraft:powder_snow_cauldron","minecraft:powered_rail","minecraft:prismarine","minecraft:prismarine_brick_slab","minecraft:prismarine_brick_stairs","minecraft:prismarine_bricks","minecraft:prismarine_slab","minecraft:prismarine_stairs","minecraft:prismarine_wall","minecraft:pumpkin","minecraft:purple_bed","minecraft:purple_candle_cake","minecraft:purple_carpet","minecraft:purple_concrete","minecraft:purple_concrete_powder","minecraft:purple_glazed_terracotta","minecraft:purple_shulker_box","minecraft:purple_stained_glass","minecraft:purple_stained_glass_pane","minecraft:purple_terracotta","minecraft:purple_wall_banner","minecraft:purple_wool","minecraft:purpur_block","minecraft:purpur_pillar","minecraft:purpur_slab","minecraft:purpur_stairs","minecraft:quartz_block","minecraft:quartz_bricks","minecraft:quartz_pillar","minecraft:quartz_slab","minecraft:quartz_stairs","minecraft:rail","minecraft:raw_copper_block","minecraft:raw_gold_block","minecraft:raw_iron_block","minecraft:red_banner","minecraft:red_bed","minecraft:red_candle_cake","minecraft:red_carpet","minecraft:red_concrete","minecraft:red_concrete_powder","minecraft:red_glazed_terracotta","minecraft:red_mushroom","minecraft:red_mushroom_block","minecraft:red_nether_brick_slab","minecraft:red_nether_brick_stairs","minecraft:red_nether_brick_wall","minecraft:red_nether_bricks","minecraft:red_sand","minecraft:red_sandstone","minecraft:red_sandstone_slab","minecraft:red_sandstone_stairs","minecraft:red_sandstone_wall","minecraft:red_shulker_box","minecraft:red_stained_glass","minecraft:red_stained_glass_pane","minecraft:red_terracotta","minecraft:red_tulip","minecraft:red_wall_banner","minecraft:red_wool","minecraft:redstone_block","minecraft:redstone_lamp","minecraft:redstone_ore","minecraft:repeating_command_block","minecraft:respawn_anchor","minecraft:rooted_dirt","minecraft:rose_bush","minecraft:sand","minecraft:sandstone","minecraft:sandstone_slab","minecraft:sandstone_stairs","minecraft:sandstone_wall","minecraft:scaffolding","minecraft:sculk_sensor","minecraft:sculk","minecraft:sea_lantern","minecraft:seagrass","minecraft:shroomlight","minecraft:shulker_box","minecraft:skeleton_skull","minecraft:skeleton_wall_skull","minecraft:slime_block","minecraft:small_amethyst_bud","minecraft:smithing_table","minecraft:smoker","minecraft:smooth_basalt","minecraft:smooth_quartz","minecraft:smooth_quartz_slab","minecraft:smooth_quartz_stairs","minecraft:smooth_red_sandstone","minecraft:smooth_red_sandstone_slab","minecraft:smooth_red_sandstone_stairs","minecraft:smooth_sandstone","minecraft:smooth_sandstone_slab","minecraft:smooth_sandstone_stairs","minecraft:smooth_stone","minecraft:smooth_stone_slab","minecraft:snow_block","minecraft:soul_campfire","minecraft:soul_fire","minecraft:soul_lantern","minecraft:soul_sand","minecraft:soul_soil","minecraft:spawner","minecraft:sponge","minecraft:spore_blossom","minecraft:spruce_door","minecraft:spruce_fence","minecraft:spruce_fence_gate","minecraft:spruce_leaves","minecraft:spruce_log","minecraft:spruce_planks","minecraft:spruce_slab","minecraft:spruce_stairs","minecraft:spruce_trapdoor","minecraft:spruce_wall_sign","minecraft:spruce_wood","minecraft:sticky_piston","minecraft:stone","minecraft:stone_brick_slab","minecraft:stone_brick_stairs","minecraft:stone_brick_wall","minecraft:stone_bricks","minecraft:stone_slab","minecraft:stone_stairs","minecraft:stonecutter","minecraft:stripped_acacia_log","minecraft:stripped_acacia_wood","minecraft:stripped_birch_log","minecraft:stripped_birch_wood","minecraft:stripped_crimson_hyphae","minecraft:stripped_crimson_stem","minecraft:stripped_dark_oak_log","minecraft:stripped_dark_oak_wood","minecraft:stripped_jungle_log","minecraft:stripped_jungle_wood","minecraft:stripped_oak_log","minecraft:stripped_oak_wood","minecraft:stripped_spruce_log","minecraft:stripped_spruce_wood","minecraft:stripped_warped_hyphae","minecraft:stripped_warped_stem","minecraft:sweet_berry_bush","minecraft:tall_grass","minecraft:tall_seagrass","minecraft:target","minecraft:terracotta","minecraft:tinted_glass","minecraft:tnt","minecraft:trapped_chest","minecraft:tripwire","minecraft:tripwire_hook","minecraft:tube_coral","minecraft:tube_coral_block","minecraft:tube_coral_fan","minecraft:tube_coral_wall_fan","minecraft:tuff","minecraft:turtle_egg","minecraft:twisting_vines_plant","minecraft:warped_door","minecraft:warped_fence","minecraft:warped_fence_gate","minecraft:warped_hyphae","minecraft:warped_nylium","minecraft:warped_planks","minecraft:warped_slab","minecraft:warped_stairs","minecraft:warped_trapdoor","minecraft:warped_wall_sign","minecraft:warped_wart_block","minecraft:water_cauldron","minecraft:waxed_copper_block","minecraft:waxed_cut_copper","minecraft:waxed_cut_copper_slab","minecraft:waxed_cut_copper_stairs","minecraft:waxed_exposed_copper","minecraft:waxed_exposed_cut_copper","minecraft:waxed_exposed_cut_copper_slab","minecraft:waxed_exposed_cut_copper_stairs","minecraft:waxed_oxidized_copper","minecraft:waxed_oxidized_cut_copper","minecraft:waxed_oxidized_cut_copper_slab","minecraft:waxed_oxidized_cut_copper_stairs","minecraft:waxed_weathered_copper","minecraft:waxed_weathered_cut_copper","minecraft:waxed_weathered_cut_copper_slab","minecraft:waxed_weathered_cut_copper_stairs","minecraft:weathered_copper","minecraft:weathered_cut_copper","minecraft:weathered_cut_copper_slab","minecraft:weathered_cut_copper_stairs","minecraft:weeping_vines_plant","minecraft:wet_sponge","minecraft:wheat","minecraft:white_banner","minecraft:white_bed","minecraft:white_candle_cake","minecraft:white_carpet","minecraft:white_concrete","minecraft:white_concrete_powder","minecraft:white_glazed_terracotta","minecraft:white_shulker_box","minecraft:white_stained_glass","minecraft:white_stained_glass_pane","minecraft:white_terracotta","minecraft:white_tulip","minecraft:white_wall_banner","minecraft:white_wool","minecraft:wither_rose","minecraft:wither_skeleton_skull","minecraft:wither_skeleton_wall_skull","minecraft:yellow_banner","minecraft:yellow_bed","minecraft:yellow_candle_cake","minecraft:yellow_carpet","minecraft:yellow_concrete","minecraft:yellow_concrete_powder","minecraft:yellow_glazed_terracotta","minecraft:yellow_shulker_box","minecraft:yellow_stained_glass","minecraft:yellow_stained_glass_pane","minecraft:yellow_terracotta","minecraft:yellow_wool"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_base.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_base.json new file mode 100644 index 0000000..afd629c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_base.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:acacia_door","minecraft:void_air","minecraft:air","minecraft:acacia_fence","minecraft:acacia_fence_gate","minecraft:acacia_leaves","minecraft:acacia_log","minecraft:acacia_planks","minecraft:acacia_sapling","minecraft:acacia_sign","minecraft:acacia_slab","minecraft:acacia_stairs","minecraft:acacia_trapdoor","minecraft:acacia_wall_sign","minecraft:acacia_wood","minecraft:activator_rail","minecraft:allium","minecraft:ancient_debris","minecraft:andesite","minecraft:andesite_slab","minecraft:andesite_stairs","minecraft:andesite_wall","minecraft:anvil","minecraft:attached_melon_stem","minecraft:attached_pumpkin_stem","minecraft:azalea","minecraft:azalea_leaves","minecraft:azure_bluet","minecraft:bamboo","minecraft:bamboo_sapling","minecraft:barrel","minecraft:barrier","minecraft:basalt","minecraft:beacon","minecraft:bee_nest","minecraft:beehive","minecraft:birch_door","minecraft:birch_fence","minecraft:birch_fence_gate","minecraft:birch_leaves","minecraft:birch_log","minecraft:birch_planks","minecraft:birch_pressure_plate","minecraft:birch_sapling","minecraft:birch_sign","minecraft:birch_slab","minecraft:birch_stairs","minecraft:birch_trapdoor","minecraft:birch_wall_sign","minecraft:birch_wood","minecraft:black_banner","minecraft:black_bed","minecraft:black_candle_cake","minecraft:black_carpet","minecraft:black_concrete","minecraft:black_concrete_powder","minecraft:black_glazed_terracotta","minecraft:black_shulker_box","minecraft:black_stained_glass","minecraft:bedrock","minecraft:black_stained_glass_pane","minecraft:black_terracotta","minecraft:black_wall_banner","minecraft:black_wool","minecraft:blackstone_slab","minecraft:blackstone_stairs","minecraft:blackstone_wall","minecraft:blast_furnace","minecraft:blue_banner","minecraft:blue_bed","minecraft:blue_candle_cake","minecraft:blue_carpet","minecraft:blue_concrete_powder","minecraft:blue_glazed_terracotta","minecraft:blue_orchid","minecraft:blue_shulker_box","minecraft:blue_stained_glass","minecraft:blue_stained_glass_pane","minecraft:blue_terracotta","minecraft:blue_wall_banner","minecraft:blue_wool","minecraft:bone_block","minecraft:bookshelf","minecraft:brain_coral","minecraft:brain_coral_block","minecraft:brain_coral_fan","minecraft:brain_coral_wall_fan","minecraft:brewing_stand","minecraft:brick_slab","minecraft:brick_stairs","minecraft:brick_wall","minecraft:bricks","minecraft:brown_banner","minecraft:brown_bed","minecraft:brown_candle_cake","minecraft:brown_carpet","minecraft:brown_concrete","minecraft:brown_concrete_powder","minecraft:brown_glazed_terracotta","minecraft:brown_mushroom","minecraft:brown_mushroom_block","minecraft:brown_shulker_box","minecraft:brown_stained_glass","minecraft:brown_stained_glass_pane","minecraft:brown_terracotta","minecraft:brown_wall_banner","minecraft:brown_wool","minecraft:bubble_column","minecraft:bubble_coral","minecraft:bubble_coral_block","minecraft:bubble_coral_fan","minecraft:bubble_coral_wall_fan","minecraft:budding_amethyst","minecraft:cactus","minecraft:cake","minecraft:campfire","minecraft:candle_cake","minecraft:carrots","minecraft:cartography_table","minecraft:carved_pumpkin","minecraft:cauldron","minecraft:chain","minecraft:chain_command_block","minecraft:chest","minecraft:chipped_anvil","minecraft:chiseled_deepslate","minecraft:chiseled_nether_bricks","minecraft:chiseled_polished_blackstone","minecraft:chiseled_quartz_block","minecraft:chiseled_red_sandstone","minecraft:chiseled_sandstone","minecraft:chiseled_stone_bricks","minecraft:chorus_flower","minecraft:chorus_plant","minecraft:clay","minecraft:coal_block","minecraft:coal_ore","minecraft:coarse_dirt","minecraft:cobbled_deepslate","minecraft:cobbled_deepslate_slab","minecraft:cobbled_deepslate_stairs","minecraft:cobbled_deepslate_wall","minecraft:cobblestone","minecraft:cobblestone_slab","minecraft:cobblestone_stairs","minecraft:cobblestone_wall","minecraft:cocoa","minecraft:command_block","minecraft:comparator","minecraft:composter","minecraft:conduit","minecraft:copper_block","minecraft:copper_ore","minecraft:cracked_deepslate_bricks","minecraft:cracked_deepslate_tiles","minecraft:cracked_nether_bricks","minecraft:cracked_polished_blackstone_bricks","minecraft:cracked_stone_bricks","minecraft:crafting_table","minecraft:creeper_head","minecraft:creeper_wall_head","minecraft:crimson_door","minecraft:crimson_fence","minecraft:crimson_fence_gate","minecraft:crimson_fungus","minecraft:crimson_hyphae","minecraft:crimson_nylium","minecraft:crimson_planks","minecraft:crimson_pressure_plate","minecraft:crimson_roots","minecraft:crimson_sign","minecraft:crimson_slab","minecraft:crimson_stairs","minecraft:crimson_stem","minecraft:crimson_trapdoor","minecraft:crimson_wall_sign","minecraft:crying_obsidian","minecraft:cut_copper","minecraft:cut_copper_slab","minecraft:cut_copper_stairs","minecraft:cut_red_sandstone","minecraft:cut_red_sandstone_slab","minecraft:cut_sandstone","minecraft:cut_sandstone_slab","minecraft:cyan_banner","minecraft:cyan_bed","minecraft:cyan_candle_cake","minecraft:cyan_carpet","minecraft:cyan_concrete","minecraft:cyan_concrete_powder","minecraft:cyan_glazed_terracotta","minecraft:cyan_shulker_box","minecraft:cyan_stained_glass","minecraft:cyan_stained_glass_pane","minecraft:cyan_terracotta","minecraft:cyan_wall_banner","minecraft:cyan_wool","minecraft:damaged_anvil","minecraft:dandelion","minecraft:dark_oak_door","minecraft:dark_oak_fence","minecraft:dark_oak_fence_gate","minecraft:dark_oak_leaves","minecraft:dark_oak_log","minecraft:dark_oak_planks","minecraft:dark_oak_pressure_plate","minecraft:dark_oak_sapling","minecraft:dark_oak_sign","minecraft:dark_oak_slab","minecraft:dark_oak_stairs","minecraft:dark_oak_trapdoor","minecraft:dark_oak_wall_sign","minecraft:dark_oak_wood","minecraft:dark_prismarine","minecraft:dark_prismarine_slab","minecraft:dark_prismarine_stairs","minecraft:daylight_detector","minecraft:dead_brain_coral","minecraft:dead_brain_coral_block","minecraft:dead_brain_coral_fan","minecraft:dead_brain_coral_wall_fan","minecraft:dead_bubble_coral","minecraft:dead_bubble_coral_block","minecraft:dead_bubble_coral_fan","minecraft:dead_fire_coral_block","minecraft:dead_fire_coral_fan","minecraft:dead_fire_coral_wall_fan","minecraft:dead_horn_coral","minecraft:dead_horn_coral_block","minecraft:dead_horn_coral_fan","minecraft:dead_horn_coral_wall_fan","minecraft:dead_tube_coral","minecraft:dead_tube_coral_block","minecraft:dead_tube_coral_fan","minecraft:dead_tube_coral_wall_fan","minecraft:deepslate_brick_slab","minecraft:deepslate_brick_stairs","minecraft:deepslate_brick_wall","minecraft:deepslate_bricks","minecraft:deepslate_tile_slab","minecraft:deepslate_tile_stairs","minecraft:deepslate_tile_wall","minecraft:deepslate_tiles","minecraft:detector_rail","minecraft:diamond_block","minecraft:diamond_ore","minecraft:diorite","minecraft:diorite_slab","minecraft:diorite_stairs","minecraft:diorite_wall","minecraft:dirt","minecraft:dirt_path","minecraft:dispenser","minecraft:dragon_egg","minecraft:dragon_head","minecraft:dragon_wall_head","minecraft:dried_kelp_block","minecraft:dripstone_block","minecraft:dropper","minecraft:emerald_block","minecraft:emerald_ore","minecraft:enchanting_table","minecraft:end_gateway","minecraft:end_portal","minecraft:end_portal_frame","minecraft:end_rod","minecraft:end_stone","minecraft:end_stone_brick_slab","minecraft:end_stone_brick_stairs","minecraft:end_stone_brick_wall","minecraft:end_stone_bricks","minecraft:ender_chest","minecraft:exposed_copper","minecraft:exposed_cut_copper","minecraft:exposed_cut_copper_slab","minecraft:exposed_cut_copper_stairs","minecraft:farmland","minecraft:fire_coral","minecraft:fire_coral_block","minecraft:fire_coral_fan","minecraft:fire_coral_wall_fan","minecraft:fletching_table","minecraft:flowering_azalea","minecraft:flowering_azalea_leaves","minecraft:frosted_ice","minecraft:furnace","minecraft:gilded_blackstone","minecraft:glass","minecraft:glass_pane","minecraft:glowstone","minecraft:gold_block","minecraft:gold_ore","minecraft:granite","minecraft:granite_slab","minecraft:granite_stairs","minecraft:granite_wall","minecraft:grass_block","minecraft:gray_banner","minecraft:gray_bed","minecraft:gray_candle_cake","minecraft:gray_carpet","minecraft:gray_concrete","minecraft:gray_concrete_powder","minecraft:gray_glazed_terracotta","minecraft:gray_shulker_box","minecraft:gray_stained_glass","minecraft:gray_stained_glass_pane","minecraft:gray_terracotta","minecraft:gray_wall_banner","minecraft:gray_wool","minecraft:green_banner","minecraft:green_bed","minecraft:green_candle_cake","minecraft:green_carpet","minecraft:green_concrete","minecraft:green_concrete_powder","minecraft:green_glazed_terracotta","minecraft:green_shulker_box","minecraft:green_stained_glass","minecraft:green_stained_glass_pane","minecraft:green_terracotta","minecraft:green_wall_banner","minecraft:green_wool","minecraft:grindstone","minecraft:hanging_roots","minecraft:hay_block","minecraft:heavy_weighted_pressure_plate","minecraft:honey_block","minecraft:honeycomb_block","minecraft:hopper","minecraft:horn_coral","minecraft:horn_coral_block","minecraft:horn_coral_fan","minecraft:horn_coral_wall_fan","minecraft:infested_chiseled_stone_bricks","minecraft:infested_cobblestone","minecraft:infested_cracked_stone_bricks","minecraft:infested_deepslate","minecraft:infested_mossy_stone_bricks","minecraft:infested_stone","minecraft:infested_stone_bricks","minecraft:iron_bars","minecraft:iron_block","minecraft:iron_door","minecraft:iron_ore","minecraft:iron_trapdoor","minecraft:jack_o_lantern","minecraft:jigsaw","minecraft:jukebox","minecraft:jungle_door","minecraft:jungle_fence","minecraft:jungle_fence_gate","minecraft:jungle_leaves","minecraft:jungle_log","minecraft:jungle_planks","minecraft:jungle_pressure_plate","minecraft:jungle_sapling","minecraft:jungle_sign","minecraft:jungle_slab","minecraft:jungle_stairs","minecraft:jungle_trapdoor","minecraft:jungle_wall_sign","minecraft:jungle_wood","minecraft:kelp","minecraft:kelp_plant","minecraft:ladder","minecraft:lantern","minecraft:lapis_block","minecraft:lapis_ore","minecraft:large_amethyst_bud","minecraft:large_fern","minecraft:lava_cauldron","minecraft:lectern","minecraft:lever","minecraft:light","minecraft:light_blue_banner","minecraft:light_blue_bed","minecraft:light_blue_candle_cake","minecraft:light_blue_carpet","minecraft:light_blue_concrete","minecraft:light_blue_concrete_powder","minecraft:light_blue_glazed_terracotta","minecraft:light_blue_shulker_box","minecraft:light_blue_stained_glass","minecraft:light_blue_stained_glass_pane","minecraft:light_blue_terracotta","minecraft:light_blue_wall_banner","minecraft:light_blue_wool","minecraft:light_gray_banner","minecraft:light_gray_bed","minecraft:light_gray_candle_cake","minecraft:light_gray_carpet","minecraft:light_gray_concrete","minecraft:light_gray_concrete_powder","minecraft:light_gray_glazed_terracotta","minecraft:light_gray_shulker_box","minecraft:light_gray_stained_glass","minecraft:light_gray_stained_glass_pane","minecraft:light_gray_terracotta","minecraft:light_gray_wall_banner","minecraft:light_gray_wool","minecraft:light_weighted_pressure_plate","minecraft:lightning_rod","minecraft:lilac","minecraft:lily_of_the_valley","minecraft:lily_pad","minecraft:lime_banner","minecraft:lime_bed","minecraft:lime_candle_cake","minecraft:lime_carpet","minecraft:lime_concrete","minecraft:lime_concrete_powder","minecraft:lime_glazed_terracotta","minecraft:lime_shulker_box","minecraft:lime_stained_glass","minecraft:lime_stained_glass_pane","minecraft:lime_terracotta","minecraft:lime_wall_banner","minecraft:lime_wool","minecraft:lodestone","minecraft:loom","minecraft:magenta_banner","minecraft:magenta_bed","minecraft:magenta_candle_cake","minecraft:magenta_carpet","minecraft:magenta_concrete","minecraft:magenta_concrete_powder","minecraft:magenta_glazed_terracotta","minecraft:magenta_shulker_box","minecraft:magenta_stained_glass","minecraft:magenta_stained_glass_pane","minecraft:magenta_terracotta","minecraft:magenta_wall_banner","minecraft:magenta_wool","minecraft:magma_block","minecraft:medium_amethyst_bud","minecraft:melon","minecraft:melon_stem","minecraft:moss_carpet","minecraft:mossy_cobblestone","minecraft:mossy_cobblestone_slab","minecraft:mossy_cobblestone_stairs","minecraft:mossy_cobblestone_wall","minecraft:mossy_stone_brick_slab","minecraft:mossy_stone_brick_stairs","minecraft:mossy_stone_brick_wall","minecraft:mossy_stone_bricks","minecraft:moving_piston","minecraft:mushroom_stem","minecraft:mycelium","minecraft:nether_brick_fence","minecraft:nether_brick_slab","minecraft:nether_brick_stairs","minecraft:nether_brick_wall","minecraft:nether_bricks","minecraft:nether_gold_ore","minecraft:nether_portal","minecraft:nether_quartz_ore","minecraft:nether_sprouts","minecraft:nether_wart","minecraft:nether_wart_block","minecraft:netherite_block","minecraft:netherrack","minecraft:note_block","minecraft:oak_door","minecraft:oak_fence","minecraft:oak_fence_gate","minecraft:oak_leaves","minecraft:oak_log","minecraft:oak_planks","minecraft:oak_sapling","minecraft:oak_sign","minecraft:oak_slab","minecraft:oak_stairs","minecraft:oak_trapdoor","minecraft:oak_wall_sign","minecraft:oak_wood","minecraft:observer","minecraft:obsidian","minecraft:orange_banner","minecraft:orange_bed","minecraft:orange_candle_cake","minecraft:orange_carpet","minecraft:orange_concrete_powder","minecraft:orange_glazed_terracotta","minecraft:orange_shulker_box","minecraft:orange_stained_glass","minecraft:orange_stained_glass_pane","minecraft:orange_terracotta","minecraft:orange_tulip","minecraft:orange_wall_banner","minecraft:orange_wool","minecraft:oxeye_daisy","minecraft:oxidized_copper","minecraft:oxidized_cut_copper","minecraft:oxidized_cut_copper_slab","minecraft:oxidized_cut_copper_stairs","minecraft:peony","minecraft:petrified_oak_slab","minecraft:pink_banner","minecraft:pink_bed","minecraft:pink_candle_cake","minecraft:pink_carpet","minecraft:pink_concrete","minecraft:pink_concrete_powder","minecraft:pink_glazed_terracotta","minecraft:pink_shulker_box","minecraft:pink_stained_glass","minecraft:pink_stained_glass_pane","minecraft:pink_terracotta","minecraft:pink_tulip","minecraft:pink_wall_banner","minecraft:pink_wool","minecraft:piston","minecraft:piston_head","minecraft:player_head","minecraft:player_wall_head","minecraft:podzol","minecraft:polished_andesite","minecraft:polished_andesite_slab","minecraft:polished_andesite_stairs","minecraft:polished_basalt","minecraft:polished_blackstone","minecraft:polished_blackstone_brick_slab","minecraft:polished_blackstone_brick_stairs","minecraft:polished_blackstone_brick_wall","minecraft:polished_blackstone_bricks","minecraft:polished_blackstone_slab","minecraft:polished_blackstone_stairs","minecraft:polished_blackstone_wall","minecraft:polished_deepslate","minecraft:polished_deepslate_slab","minecraft:polished_deepslate_stairs","minecraft:polished_deepslate_wall","minecraft:polished_diorite","minecraft:polished_diorite_slab","minecraft:polished_diorite_stairs","minecraft:polished_granite","minecraft:polished_granite_slab","minecraft:polished_granite_stairs","minecraft:poppy","minecraft:potatoes","minecraft:potted_acacia_sapling","minecraft:potted_allium","minecraft:potted_azalea_bush","minecraft:potted_azure_bluet","minecraft:potted_bamboo","minecraft:potted_birch_sapling","minecraft:potted_blue_orchid","minecraft:potted_brown_mushroom","minecraft:potted_cactus","minecraft:potted_crimson_fungus","minecraft:potted_crimson_roots","minecraft:potted_dandelion","minecraft:potted_dark_oak_sapling","minecraft:potted_dead_bush","minecraft:potted_fern","minecraft:potted_flowering_azalea_bush","minecraft:potted_jungle_sapling","minecraft:potted_lily_of_the_valley","minecraft:potted_oak_sapling","minecraft:potted_orange_tulip","minecraft:potted_oxeye_daisy","minecraft:potted_pink_tulip","minecraft:potted_poppy","minecraft:potted_red_mushroom","minecraft:potted_red_tulip","minecraft:potted_spruce_sapling","minecraft:potted_warped_fungus","minecraft:potted_warped_roots","minecraft:potted_white_tulip","minecraft:potted_wither_rose","minecraft:powder_snow","minecraft:powder_snow_cauldron","minecraft:powered_rail","minecraft:prismarine","minecraft:prismarine_brick_slab","minecraft:prismarine_brick_stairs","minecraft:prismarine_bricks","minecraft:prismarine_slab","minecraft:prismarine_stairs","minecraft:prismarine_wall","minecraft:pumpkin","minecraft:purple_bed","minecraft:purple_candle_cake","minecraft:purple_carpet","minecraft:purple_concrete","minecraft:purple_concrete_powder","minecraft:purple_glazed_terracotta","minecraft:purple_shulker_box","minecraft:purple_stained_glass","minecraft:purple_stained_glass_pane","minecraft:purple_terracotta","minecraft:purple_wall_banner","minecraft:purple_wool","minecraft:purpur_block","minecraft:purpur_pillar","minecraft:purpur_slab","minecraft:purpur_stairs","minecraft:quartz_block","minecraft:quartz_bricks","minecraft:quartz_pillar","minecraft:quartz_slab","minecraft:quartz_stairs","minecraft:rail","minecraft:raw_copper_block","minecraft:raw_gold_block","minecraft:raw_iron_block","minecraft:red_banner","minecraft:red_bed","minecraft:red_candle_cake","minecraft:red_carpet","minecraft:red_concrete","minecraft:red_concrete_powder","minecraft:red_glazed_terracotta","minecraft:red_mushroom","minecraft:red_mushroom_block","minecraft:red_nether_brick_slab","minecraft:red_nether_brick_stairs","minecraft:red_nether_brick_wall","minecraft:red_nether_bricks","minecraft:red_sand","minecraft:red_sandstone","minecraft:red_sandstone_slab","minecraft:red_sandstone_stairs","minecraft:red_sandstone_wall","minecraft:red_shulker_box","minecraft:red_stained_glass","minecraft:red_stained_glass_pane","minecraft:red_terracotta","minecraft:red_tulip","minecraft:red_wall_banner","minecraft:red_wool","minecraft:redstone_block","minecraft:redstone_lamp","minecraft:redstone_ore","minecraft:repeating_command_block","minecraft:respawn_anchor","minecraft:rooted_dirt","minecraft:rose_bush","minecraft:sand","minecraft:sandstone","minecraft:sandstone_slab","minecraft:sandstone_stairs","minecraft:sandstone_wall","minecraft:scaffolding","minecraft:sea_lantern","minecraft:seagrass","minecraft:shroomlight","minecraft:shulker_box","minecraft:skeleton_skull","minecraft:skeleton_wall_skull","minecraft:slime_block","minecraft:small_amethyst_bud","minecraft:smithing_table","minecraft:smoker","minecraft:smooth_basalt","minecraft:smooth_quartz","minecraft:smooth_quartz_slab","minecraft:smooth_quartz_stairs","minecraft:smooth_red_sandstone","minecraft:smooth_red_sandstone_slab","minecraft:smooth_red_sandstone_stairs","minecraft:smooth_sandstone","minecraft:smooth_sandstone_slab","minecraft:smooth_sandstone_stairs","minecraft:smooth_stone","minecraft:smooth_stone_slab","minecraft:snow_block","minecraft:soul_campfire","minecraft:soul_fire","minecraft:soul_lantern","minecraft:soul_sand","minecraft:soul_soil","minecraft:spawner","minecraft:sponge","minecraft:spore_blossom","minecraft:spruce_door","minecraft:spruce_fence","minecraft:spruce_fence_gate","minecraft:spruce_leaves","minecraft:spruce_log","minecraft:spruce_planks","minecraft:spruce_slab","minecraft:spruce_stairs","minecraft:spruce_trapdoor","minecraft:spruce_wall_sign","minecraft:spruce_wood","minecraft:sticky_piston","minecraft:stone","minecraft:stone_brick_slab","minecraft:stone_brick_stairs","minecraft:stone_brick_wall","minecraft:stone_bricks","minecraft:stone_slab","minecraft:stone_stairs","minecraft:stonecutter","minecraft:stripped_acacia_log","minecraft:stripped_acacia_wood","minecraft:stripped_birch_log","minecraft:stripped_birch_wood","minecraft:stripped_crimson_hyphae","minecraft:stripped_crimson_stem","minecraft:stripped_dark_oak_log","minecraft:stripped_dark_oak_wood","minecraft:stripped_jungle_log","minecraft:stripped_jungle_wood","minecraft:stripped_oak_log","minecraft:stripped_oak_wood","minecraft:stripped_spruce_log","minecraft:stripped_spruce_wood","minecraft:stripped_warped_hyphae","minecraft:stripped_warped_stem","minecraft:sweet_berry_bush","minecraft:tall_grass","minecraft:tall_seagrass","minecraft:target","minecraft:terracotta","minecraft:tinted_glass","minecraft:tnt","minecraft:trapped_chest","minecraft:tripwire","minecraft:tripwire_hook","minecraft:tube_coral","minecraft:tube_coral_block","minecraft:tube_coral_fan","minecraft:tube_coral_wall_fan","minecraft:turtle_egg","minecraft:twisting_vines_plant","minecraft:warped_door","minecraft:warped_fence","minecraft:warped_fence_gate","minecraft:warped_hyphae","minecraft:warped_nylium","minecraft:warped_planks","minecraft:warped_slab","minecraft:warped_stairs","minecraft:warped_trapdoor","minecraft:warped_wall_sign","minecraft:warped_wart_block","minecraft:water_cauldron","minecraft:waxed_copper_block","minecraft:waxed_cut_copper","minecraft:waxed_cut_copper_slab","minecraft:waxed_cut_copper_stairs","minecraft:waxed_exposed_copper","minecraft:waxed_exposed_cut_copper","minecraft:waxed_exposed_cut_copper_slab","minecraft:waxed_exposed_cut_copper_stairs","minecraft:waxed_oxidized_copper","minecraft:waxed_oxidized_cut_copper","minecraft:waxed_oxidized_cut_copper_slab","minecraft:waxed_oxidized_cut_copper_stairs","minecraft:waxed_weathered_copper","minecraft:waxed_weathered_cut_copper","minecraft:waxed_weathered_cut_copper_slab","minecraft:waxed_weathered_cut_copper_stairs","minecraft:weathered_copper","minecraft:weathered_cut_copper","minecraft:weathered_cut_copper_slab","minecraft:weathered_cut_copper_stairs","minecraft:weeping_vines_plant","minecraft:wet_sponge","minecraft:wheat","minecraft:white_banner","minecraft:white_bed","minecraft:white_candle_cake","minecraft:white_carpet","minecraft:white_concrete","minecraft:white_concrete_powder","minecraft:white_glazed_terracotta","minecraft:white_shulker_box","minecraft:white_stained_glass","minecraft:white_stained_glass_pane","minecraft:white_terracotta","minecraft:white_tulip","minecraft:white_wall_banner","minecraft:white_wool","minecraft:wither_rose","minecraft:wither_skeleton_skull","minecraft:wither_skeleton_wall_skull","minecraft:yellow_banner","minecraft:yellow_bed","minecraft:void_air","minecraft:yellow_candle_cake","minecraft:yellow_carpet","minecraft:yellow_concrete","minecraft:yellow_concrete_powder","minecraft:yellow_glazed_terracotta","minecraft:yellow_shulker_box","minecraft:yellow_stained_glass","minecraft:yellow_stained_glass_pane","minecraft:yellow_terracotta","minecraft:yellow_wool"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_lava.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_lava.json new file mode 100644 index 0000000..26d8700 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_lava.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:acacia_door","minecraft:void_air","minecraft:air","minecraft:acacia_fence","minecraft:acacia_fence_gate","minecraft:acacia_leaves","minecraft:acacia_log","minecraft:acacia_planks","minecraft:acacia_sapling","minecraft:acacia_sign","minecraft:acacia_slab","minecraft:acacia_stairs","minecraft:acacia_trapdoor","minecraft:acacia_wall_sign","minecraft:acacia_wood","minecraft:activator_rail","minecraft:allium","minecraft:amethyst_block","minecraft:amethyst_cluster","minecraft:ancient_debris","minecraft:andesite","minecraft:andesite_slab","minecraft:andesite_stairs","minecraft:andesite_wall","minecraft:anvil","minecraft:attached_melon_stem","minecraft:attached_pumpkin_stem","minecraft:azalea","minecraft:azalea_leaves","minecraft:azure_bluet","minecraft:bamboo","minecraft:bamboo_sapling","minecraft:barrel","minecraft:barrier","minecraft:basalt","minecraft:beacon","minecraft:bee_nest","minecraft:beehive","minecraft:birch_door","minecraft:birch_fence","minecraft:birch_fence_gate","minecraft:birch_leaves","minecraft:birch_log","minecraft:birch_planks","minecraft:birch_pressure_plate","minecraft:birch_sapling","minecraft:birch_sign","minecraft:birch_slab","minecraft:birch_stairs","minecraft:birch_trapdoor","minecraft:birch_wall_sign","minecraft:birch_wood","minecraft:black_banner","minecraft:black_bed","minecraft:black_candle_cake","minecraft:black_carpet","minecraft:black_concrete","minecraft:black_concrete_powder","minecraft:black_glazed_terracotta","minecraft:black_shulker_box","minecraft:black_stained_glass","minecraft:bedrock","minecraft:black_stained_glass_pane","minecraft:black_terracotta","minecraft:black_wall_banner","minecraft:black_wool","minecraft:blackstone","minecraft:blackstone_slab","minecraft:blackstone_stairs","minecraft:blackstone_wall","minecraft:blast_furnace","minecraft:blue_banner","minecraft:blue_bed","minecraft:blue_candle_cake","minecraft:blue_carpet","minecraft:blue_concrete","minecraft:blue_concrete_powder","minecraft:blue_glazed_terracotta","minecraft:blue_ice","minecraft:blue_orchid","minecraft:blue_shulker_box","minecraft:blue_stained_glass","minecraft:blue_stained_glass_pane","minecraft:blue_terracotta","minecraft:blue_wall_banner","minecraft:blue_wool","minecraft:bone_block","minecraft:bookshelf","minecraft:brain_coral","minecraft:brain_coral_block","minecraft:brain_coral_fan","minecraft:brain_coral_wall_fan","minecraft:brewing_stand","minecraft:brick_slab","minecraft:brick_stairs","minecraft:brick_wall","minecraft:bricks","minecraft:brown_banner","minecraft:brown_bed","minecraft:brown_candle_cake","minecraft:brown_carpet","minecraft:brown_concrete","minecraft:brown_concrete_powder","minecraft:brown_glazed_terracotta","minecraft:brown_mushroom","minecraft:brown_mushroom_block","minecraft:brown_shulker_box","minecraft:brown_stained_glass","minecraft:brown_stained_glass_pane","minecraft:brown_terracotta","minecraft:brown_wall_banner","minecraft:brown_wool","minecraft:bubble_column","minecraft:bubble_coral","minecraft:bubble_coral_block","minecraft:bubble_coral_fan","minecraft:bubble_coral_wall_fan","minecraft:budding_amethyst","minecraft:cactus","minecraft:cake","minecraft:calcite","minecraft:campfire","minecraft:candle_cake","minecraft:carrots","minecraft:cartography_table","minecraft:carved_pumpkin","minecraft:cauldron","minecraft:chain","minecraft:chain_command_block","minecraft:chest","minecraft:chipped_anvil","minecraft:chiseled_deepslate","minecraft:chiseled_nether_bricks","minecraft:chiseled_polished_blackstone","minecraft:chiseled_quartz_block","minecraft:chiseled_red_sandstone","minecraft:chiseled_sandstone","minecraft:chiseled_stone_bricks","minecraft:chorus_flower","minecraft:chorus_plant","minecraft:clay","minecraft:coal_block","minecraft:coal_ore","minecraft:coarse_dirt","minecraft:cobbled_deepslate","minecraft:cobbled_deepslate_slab","minecraft:cobbled_deepslate_stairs","minecraft:cobbled_deepslate_wall","minecraft:cobblestone","minecraft:cobblestone_slab","minecraft:cobblestone_stairs","minecraft:cobblestone_wall","minecraft:cocoa","minecraft:command_block","minecraft:comparator","minecraft:composter","minecraft:conduit","minecraft:copper_block","minecraft:copper_ore","minecraft:cracked_deepslate_bricks","minecraft:cracked_deepslate_tiles","minecraft:cracked_nether_bricks","minecraft:cracked_polished_blackstone_bricks","minecraft:cracked_stone_bricks","minecraft:crafting_table","minecraft:creeper_head","minecraft:creeper_wall_head","minecraft:crimson_door","minecraft:crimson_fence","minecraft:crimson_fence_gate","minecraft:crimson_fungus","minecraft:crimson_hyphae","minecraft:crimson_nylium","minecraft:crimson_planks","minecraft:crimson_pressure_plate","minecraft:crimson_roots","minecraft:crimson_sign","minecraft:crimson_slab","minecraft:crimson_stairs","minecraft:crimson_stem","minecraft:crimson_trapdoor","minecraft:crimson_wall_sign","minecraft:crying_obsidian","minecraft:cut_copper","minecraft:cut_copper_slab","minecraft:cut_copper_stairs","minecraft:cut_red_sandstone","minecraft:cut_red_sandstone_slab","minecraft:cut_sandstone","minecraft:cut_sandstone_slab","minecraft:cyan_banner","minecraft:cyan_bed","minecraft:cyan_candle_cake","minecraft:cyan_carpet","minecraft:cyan_concrete","minecraft:cyan_concrete_powder","minecraft:cyan_glazed_terracotta","minecraft:cyan_shulker_box","minecraft:cyan_stained_glass","minecraft:cyan_stained_glass_pane","minecraft:cyan_terracotta","minecraft:cyan_wall_banner","minecraft:cyan_wool","minecraft:damaged_anvil","minecraft:dandelion","minecraft:dark_oak_door","minecraft:dark_oak_fence","minecraft:dark_oak_fence_gate","minecraft:dark_oak_leaves","minecraft:dark_oak_log","minecraft:dark_oak_planks","minecraft:dark_oak_pressure_plate","minecraft:dark_oak_sapling","minecraft:dark_oak_sign","minecraft:dark_oak_slab","minecraft:dark_oak_stairs","minecraft:dark_oak_trapdoor","minecraft:dark_oak_wall_sign","minecraft:dark_oak_wood","minecraft:dark_prismarine","minecraft:dark_prismarine_slab","minecraft:dark_prismarine_stairs","minecraft:daylight_detector","minecraft:dead_brain_coral","minecraft:dead_brain_coral_block","minecraft:dead_brain_coral_fan","minecraft:dead_brain_coral_wall_fan","minecraft:dead_bubble_coral","minecraft:dead_bubble_coral_block","minecraft:dead_bubble_coral_fan","minecraft:dead_fire_coral_block","minecraft:dead_fire_coral_fan","minecraft:dead_fire_coral_wall_fan","minecraft:dead_horn_coral","minecraft:dead_horn_coral_block","minecraft:dead_horn_coral_fan","minecraft:dead_horn_coral_wall_fan","minecraft:dead_tube_coral","minecraft:dead_tube_coral_block","minecraft:dead_tube_coral_fan","minecraft:dead_tube_coral_wall_fan","minecraft:deepslate","minecraft:deepslate_brick_slab","minecraft:deepslate_brick_stairs","minecraft:deepslate_brick_wall","minecraft:deepslate_bricks","minecraft:deepslate_coal_ore","minecraft:deepslate_copper_ore","minecraft:deepslate_diamond_ore","minecraft:deepslate_emerald_ore","minecraft:deepslate_gold_ore","minecraft:deepslate_iron_ore","minecraft:deepslate_lapis_ore","minecraft:deepslate_redstone_ore","minecraft:deepslate_tile_slab","minecraft:deepslate_tile_stairs","minecraft:deepslate_tile_wall","minecraft:deepslate_tiles","minecraft:detector_rail","minecraft:diamond_block","minecraft:diamond_ore","minecraft:diorite","minecraft:diorite_slab","minecraft:diorite_stairs","minecraft:diorite_wall","minecraft:dirt","minecraft:dirt_path","minecraft:dispenser","minecraft:dragon_egg","minecraft:dragon_head","minecraft:dragon_wall_head","minecraft:dried_kelp_block","minecraft:dripstone_block","minecraft:dropper","minecraft:emerald_block","minecraft:emerald_ore","minecraft:enchanting_table","minecraft:end_gateway","minecraft:end_portal","minecraft:end_portal_frame","minecraft:end_rod","minecraft:end_stone","minecraft:end_stone_brick_slab","minecraft:end_stone_brick_stairs","minecraft:end_stone_brick_wall","minecraft:end_stone_bricks","minecraft:ender_chest","minecraft:exposed_copper","minecraft:exposed_cut_copper","minecraft:exposed_cut_copper_slab","minecraft:exposed_cut_copper_stairs","minecraft:farmland","minecraft:fire_coral","minecraft:fire_coral_block","minecraft:fire_coral_fan","minecraft:fire_coral_wall_fan","minecraft:fletching_table","minecraft:flowering_azalea","minecraft:flowering_azalea_leaves","minecraft:frosted_ice","minecraft:furnace","minecraft:gilded_blackstone","minecraft:glass","minecraft:glass_pane","minecraft:glowstone","minecraft:gold_block","minecraft:gold_ore","minecraft:granite","minecraft:granite_slab","minecraft:granite_stairs","minecraft:granite_wall","minecraft:grass_block","minecraft:gravel","minecraft:gray_banner","minecraft:gray_bed","minecraft:gray_candle_cake","minecraft:gray_carpet","minecraft:gray_concrete","minecraft:gray_concrete_powder","minecraft:gray_glazed_terracotta","minecraft:gray_shulker_box","minecraft:gray_stained_glass","minecraft:gray_stained_glass_pane","minecraft:gray_terracotta","minecraft:gray_wall_banner","minecraft:gray_wool","minecraft:green_banner","minecraft:green_bed","minecraft:green_candle_cake","minecraft:green_carpet","minecraft:green_concrete","minecraft:green_concrete_powder","minecraft:green_glazed_terracotta","minecraft:green_shulker_box","minecraft:green_stained_glass","minecraft:green_stained_glass_pane","minecraft:green_terracotta","minecraft:green_wall_banner","minecraft:green_wool","minecraft:grindstone","minecraft:hanging_roots","minecraft:hay_block","minecraft:heavy_weighted_pressure_plate","minecraft:honey_block","minecraft:honeycomb_block","minecraft:hopper","minecraft:horn_coral","minecraft:horn_coral_block","minecraft:horn_coral_fan","minecraft:horn_coral_wall_fan","minecraft:ice","minecraft:infested_chiseled_stone_bricks","minecraft:infested_cobblestone","minecraft:infested_cracked_stone_bricks","minecraft:infested_deepslate","minecraft:infested_mossy_stone_bricks","minecraft:infested_stone","minecraft:infested_stone_bricks","minecraft:iron_bars","minecraft:iron_block","minecraft:iron_door","minecraft:iron_ore","minecraft:iron_trapdoor","minecraft:jack_o_lantern","minecraft:jigsaw","minecraft:jukebox","minecraft:jungle_door","minecraft:jungle_fence","minecraft:jungle_fence_gate","minecraft:jungle_leaves","minecraft:jungle_log","minecraft:jungle_planks","minecraft:jungle_pressure_plate","minecraft:jungle_sapling","minecraft:jungle_sign","minecraft:jungle_slab","minecraft:jungle_stairs","minecraft:jungle_trapdoor","minecraft:jungle_wall_sign","minecraft:jungle_wood","minecraft:kelp","minecraft:kelp_plant","minecraft:ladder","minecraft:lantern","minecraft:lapis_block","minecraft:lapis_ore","minecraft:large_amethyst_bud","minecraft:large_fern","minecraft:lava_cauldron","minecraft:lectern","minecraft:lever","minecraft:light","minecraft:light_blue_banner","minecraft:light_blue_bed","minecraft:light_blue_candle_cake","minecraft:light_blue_carpet","minecraft:light_blue_concrete","minecraft:light_blue_concrete_powder","minecraft:light_blue_glazed_terracotta","minecraft:light_blue_shulker_box","minecraft:light_blue_stained_glass","minecraft:light_blue_stained_glass_pane","minecraft:light_blue_terracotta","minecraft:light_blue_wall_banner","minecraft:light_blue_wool","minecraft:light_gray_banner","minecraft:light_gray_bed","minecraft:light_gray_candle_cake","minecraft:light_gray_carpet","minecraft:light_gray_concrete","minecraft:light_gray_concrete_powder","minecraft:light_gray_glazed_terracotta","minecraft:light_gray_shulker_box","minecraft:light_gray_stained_glass","minecraft:light_gray_stained_glass_pane","minecraft:light_gray_terracotta","minecraft:light_gray_wall_banner","minecraft:light_gray_wool","minecraft:light_weighted_pressure_plate","minecraft:lightning_rod","minecraft:lilac","minecraft:lily_of_the_valley","minecraft:lily_pad","minecraft:lime_banner","minecraft:lime_bed","minecraft:lime_candle_cake","minecraft:lime_carpet","minecraft:lime_concrete","minecraft:lime_concrete_powder","minecraft:lime_glazed_terracotta","minecraft:lime_shulker_box","minecraft:lime_stained_glass","minecraft:lime_stained_glass_pane","minecraft:lime_terracotta","minecraft:lime_wall_banner","minecraft:lime_wool","minecraft:lodestone","minecraft:loom","minecraft:magenta_banner","minecraft:magenta_bed","minecraft:magenta_candle_cake","minecraft:magenta_carpet","minecraft:magenta_concrete","minecraft:magenta_concrete_powder","minecraft:magenta_glazed_terracotta","minecraft:magenta_shulker_box","minecraft:magenta_stained_glass","minecraft:magenta_stained_glass_pane","minecraft:magenta_terracotta","minecraft:magenta_wall_banner","minecraft:magenta_wool","minecraft:magma_block","minecraft:medium_amethyst_bud","minecraft:melon","minecraft:melon_stem","minecraft:moss_block","minecraft:moss_carpet","minecraft:mossy_cobblestone","minecraft:mossy_cobblestone_slab","minecraft:mossy_cobblestone_stairs","minecraft:mossy_cobblestone_wall","minecraft:mossy_stone_brick_slab","minecraft:mossy_stone_brick_stairs","minecraft:mossy_stone_brick_wall","minecraft:mossy_stone_bricks","minecraft:moving_piston","minecraft:mushroom_stem","minecraft:mycelium","minecraft:nether_brick_fence","minecraft:nether_brick_slab","minecraft:nether_brick_stairs","minecraft:nether_brick_wall","minecraft:nether_bricks","minecraft:nether_gold_ore","minecraft:nether_portal","minecraft:nether_quartz_ore","minecraft:nether_sprouts","minecraft:nether_wart","minecraft:nether_wart_block","minecraft:netherite_block","minecraft:netherrack","minecraft:note_block","minecraft:oak_door","minecraft:oak_fence","minecraft:oak_fence_gate","minecraft:oak_leaves","minecraft:oak_log","minecraft:oak_planks","minecraft:oak_sapling","minecraft:oak_sign","minecraft:oak_slab","minecraft:oak_stairs","minecraft:oak_trapdoor","minecraft:oak_wall_sign","minecraft:oak_wood","minecraft:observer","minecraft:obsidian","minecraft:orange_banner","minecraft:orange_bed","minecraft:orange_candle_cake","minecraft:orange_carpet","minecraft:orange_concrete","minecraft:orange_concrete_powder","minecraft:orange_glazed_terracotta","minecraft:orange_shulker_box","minecraft:orange_stained_glass","minecraft:orange_stained_glass_pane","minecraft:orange_terracotta","minecraft:orange_tulip","minecraft:orange_wall_banner","minecraft:orange_wool","minecraft:oxeye_daisy","minecraft:oxidized_copper","minecraft:oxidized_cut_copper","minecraft:oxidized_cut_copper_slab","minecraft:oxidized_cut_copper_stairs","minecraft:packed_ice","minecraft:peony","minecraft:petrified_oak_slab","minecraft:pink_banner","minecraft:pink_bed","minecraft:pink_candle_cake","minecraft:pink_carpet","minecraft:pink_concrete","minecraft:pink_concrete_powder","minecraft:pink_glazed_terracotta","minecraft:pink_shulker_box","minecraft:pink_stained_glass","minecraft:pink_stained_glass_pane","minecraft:pink_terracotta","minecraft:pink_tulip","minecraft:pink_wall_banner","minecraft:pink_wool","minecraft:piston","minecraft:piston_head","minecraft:player_head","minecraft:player_wall_head","minecraft:podzol","minecraft:polished_andesite","minecraft:polished_andesite_slab","minecraft:polished_andesite_stairs","minecraft:polished_basalt","minecraft:polished_blackstone","minecraft:polished_blackstone_brick_slab","minecraft:polished_blackstone_brick_stairs","minecraft:polished_blackstone_brick_wall","minecraft:polished_blackstone_bricks","minecraft:polished_blackstone_slab","minecraft:polished_blackstone_stairs","minecraft:polished_blackstone_wall","minecraft:polished_deepslate","minecraft:polished_deepslate_slab","minecraft:polished_deepslate_stairs","minecraft:polished_deepslate_wall","minecraft:polished_diorite","minecraft:polished_diorite_slab","minecraft:polished_diorite_stairs","minecraft:polished_granite","minecraft:polished_granite_slab","minecraft:polished_granite_stairs","minecraft:poppy","minecraft:potatoes","minecraft:potted_acacia_sapling","minecraft:potted_allium","minecraft:potted_azalea_bush","minecraft:potted_azure_bluet","minecraft:potted_bamboo","minecraft:potted_birch_sapling","minecraft:potted_blue_orchid","minecraft:potted_brown_mushroom","minecraft:potted_cactus","minecraft:potted_crimson_fungus","minecraft:potted_crimson_roots","minecraft:potted_dandelion","minecraft:potted_dark_oak_sapling","minecraft:potted_dead_bush","minecraft:potted_fern","minecraft:potted_flowering_azalea_bush","minecraft:potted_jungle_sapling","minecraft:potted_lily_of_the_valley","minecraft:potted_oak_sapling","minecraft:potted_orange_tulip","minecraft:potted_oxeye_daisy","minecraft:potted_pink_tulip","minecraft:potted_poppy","minecraft:potted_red_mushroom","minecraft:potted_red_tulip","minecraft:potted_spruce_sapling","minecraft:potted_warped_fungus","minecraft:potted_warped_roots","minecraft:potted_white_tulip","minecraft:potted_wither_rose","minecraft:powder_snow","minecraft:powder_snow_cauldron","minecraft:powered_rail","minecraft:prismarine","minecraft:prismarine_brick_slab","minecraft:prismarine_brick_stairs","minecraft:prismarine_bricks","minecraft:prismarine_slab","minecraft:prismarine_stairs","minecraft:prismarine_wall","minecraft:pumpkin","minecraft:purple_bed","minecraft:purple_candle_cake","minecraft:purple_carpet","minecraft:purple_concrete","minecraft:purple_concrete_powder","minecraft:purple_glazed_terracotta","minecraft:purple_shulker_box","minecraft:purple_stained_glass","minecraft:purple_stained_glass_pane","minecraft:purple_terracotta","minecraft:purple_wall_banner","minecraft:purple_wool","minecraft:purpur_block","minecraft:purpur_pillar","minecraft:purpur_slab","minecraft:purpur_stairs","minecraft:quartz_block","minecraft:quartz_bricks","minecraft:quartz_pillar","minecraft:quartz_slab","minecraft:quartz_stairs","minecraft:rail","minecraft:raw_copper_block","minecraft:raw_gold_block","minecraft:raw_iron_block","minecraft:red_banner","minecraft:red_bed","minecraft:red_candle_cake","minecraft:red_carpet","minecraft:red_concrete","minecraft:red_concrete_powder","minecraft:red_glazed_terracotta","minecraft:red_mushroom","minecraft:red_mushroom_block","minecraft:red_nether_brick_slab","minecraft:red_nether_brick_stairs","minecraft:red_nether_brick_wall","minecraft:red_nether_bricks","minecraft:red_sand","minecraft:red_sandstone","minecraft:red_sandstone_slab","minecraft:red_sandstone_stairs","minecraft:red_sandstone_wall","minecraft:red_shulker_box","minecraft:red_stained_glass","minecraft:red_stained_glass_pane","minecraft:red_terracotta","minecraft:red_tulip","minecraft:red_wall_banner","minecraft:red_wool","minecraft:redstone_block","minecraft:redstone_lamp","minecraft:redstone_ore","minecraft:repeating_command_block","minecraft:respawn_anchor","minecraft:rooted_dirt","minecraft:rose_bush","minecraft:sand","minecraft:sandstone","minecraft:sandstone_slab","minecraft:sandstone_stairs","minecraft:sandstone_wall","minecraft:scaffolding","minecraft:sculk_sensor","minecraft:sculk","minecraft:sea_lantern","minecraft:seagrass","minecraft:shroomlight","minecraft:shulker_box","minecraft:skeleton_skull","minecraft:skeleton_wall_skull","minecraft:slime_block","minecraft:small_amethyst_bud","minecraft:smithing_table","minecraft:smoker","minecraft:smooth_basalt","minecraft:smooth_quartz","minecraft:smooth_quartz_slab","minecraft:smooth_quartz_stairs","minecraft:smooth_red_sandstone","minecraft:smooth_red_sandstone_slab","minecraft:smooth_red_sandstone_stairs","minecraft:smooth_sandstone","minecraft:smooth_sandstone_slab","minecraft:smooth_sandstone_stairs","minecraft:smooth_stone","minecraft:smooth_stone_slab","minecraft:snow_block","minecraft:soul_campfire","minecraft:soul_fire","minecraft:soul_lantern","minecraft:soul_sand","minecraft:soul_soil","minecraft:spawner","minecraft:sponge","minecraft:spore_blossom","minecraft:spruce_door","minecraft:spruce_fence","minecraft:spruce_fence_gate","minecraft:spruce_leaves","minecraft:spruce_log","minecraft:spruce_planks","minecraft:spruce_slab","minecraft:spruce_stairs","minecraft:spruce_trapdoor","minecraft:spruce_wall_sign","minecraft:spruce_wood","minecraft:sticky_piston","minecraft:stone","minecraft:stone_brick_slab","minecraft:stone_brick_stairs","minecraft:stone_brick_wall","minecraft:stone_bricks","minecraft:stone_slab","minecraft:stone_stairs","minecraft:stonecutter","minecraft:stripped_acacia_log","minecraft:stripped_acacia_wood","minecraft:stripped_birch_log","minecraft:stripped_birch_wood","minecraft:stripped_crimson_hyphae","minecraft:stripped_crimson_stem","minecraft:stripped_dark_oak_log","minecraft:stripped_dark_oak_wood","minecraft:stripped_jungle_log","minecraft:stripped_jungle_wood","minecraft:stripped_oak_log","minecraft:stripped_oak_wood","minecraft:stripped_spruce_log","minecraft:stripped_spruce_wood","minecraft:stripped_warped_hyphae","minecraft:stripped_warped_stem","minecraft:sweet_berry_bush","minecraft:tall_grass","minecraft:tall_seagrass","minecraft:target","minecraft:terracotta","minecraft:tinted_glass","minecraft:tnt","minecraft:trapped_chest","minecraft:tripwire","minecraft:tripwire_hook","minecraft:tube_coral","minecraft:tube_coral_block","minecraft:tube_coral_fan","minecraft:tube_coral_wall_fan","minecraft:tuff","minecraft:turtle_egg","minecraft:twisting_vines_plant","minecraft:warped_door","minecraft:warped_fence","minecraft:warped_fence_gate","minecraft:warped_hyphae","minecraft:warped_nylium","minecraft:warped_planks","minecraft:warped_slab","minecraft:warped_stairs","minecraft:warped_trapdoor","minecraft:warped_wall_sign","minecraft:warped_wart_block","minecraft:water_cauldron","minecraft:waxed_copper_block","minecraft:waxed_cut_copper","minecraft:waxed_cut_copper_slab","minecraft:waxed_cut_copper_stairs","minecraft:waxed_exposed_copper","minecraft:waxed_exposed_cut_copper","minecraft:waxed_exposed_cut_copper_slab","minecraft:waxed_exposed_cut_copper_stairs","minecraft:waxed_oxidized_copper","minecraft:waxed_oxidized_cut_copper","minecraft:waxed_oxidized_cut_copper_slab","minecraft:waxed_oxidized_cut_copper_stairs","minecraft:waxed_weathered_copper","minecraft:waxed_weathered_cut_copper","minecraft:waxed_weathered_cut_copper_slab","minecraft:waxed_weathered_cut_copper_stairs","minecraft:weathered_copper","minecraft:weathered_cut_copper","minecraft:weathered_cut_copper_slab","minecraft:weathered_cut_copper_stairs","minecraft:weeping_vines_plant","minecraft:wet_sponge","minecraft:wheat","minecraft:white_banner","minecraft:white_bed","minecraft:white_candle_cake","minecraft:white_carpet","minecraft:white_concrete","minecraft:white_concrete_powder","minecraft:white_glazed_terracotta","minecraft:white_shulker_box","minecraft:white_stained_glass","minecraft:white_stained_glass_pane","minecraft:white_terracotta","minecraft:white_tulip","minecraft:white_wall_banner","minecraft:white_wool","minecraft:wither_rose","minecraft:wither_skeleton_skull","minecraft:wither_skeleton_wall_skull","minecraft:yellow_banner","minecraft:yellow_bed","minecraft:void_air","minecraft:yellow_candle_cake","minecraft:yellow_carpet","minecraft:yellow_concrete","minecraft:yellow_concrete_powder","minecraft:yellow_glazed_terracotta","minecraft:yellow_shulker_box","minecraft:yellow_stained_glass","minecraft:yellow_stained_glass_pane","minecraft:yellow_terracotta","minecraft:yellow_wool"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_unbreakable.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_unbreakable.json new file mode 100644 index 0000000..c3d3091 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/all_but_unbreakable.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:acacia_door","minecraft:void_air","minecraft:air","minecraft:acacia_fence","minecraft:acacia_fence_gate","minecraft:acacia_leaves","minecraft:acacia_log","minecraft:acacia_planks","minecraft:acacia_sapling","minecraft:acacia_sign","minecraft:acacia_slab","minecraft:acacia_stairs","minecraft:acacia_trapdoor","minecraft:acacia_wall_sign","minecraft:acacia_wood","minecraft:activator_rail","minecraft:allium","minecraft:amethyst_block","minecraft:amethyst_cluster","minecraft:ancient_debris","minecraft:andesite","minecraft:andesite_slab","minecraft:andesite_stairs","minecraft:andesite_wall","minecraft:anvil","minecraft:attached_melon_stem","minecraft:attached_pumpkin_stem","minecraft:azalea","minecraft:azalea_leaves","minecraft:azure_bluet","minecraft:bamboo","minecraft:bamboo_sapling","minecraft:barrel","minecraft:basalt","minecraft:beacon","minecraft:bee_nest","minecraft:beehive","minecraft:birch_door","minecraft:birch_fence","minecraft:birch_fence_gate","minecraft:birch_leaves","minecraft:birch_log","minecraft:birch_planks","minecraft:birch_pressure_plate","minecraft:birch_sapling","minecraft:birch_sign","minecraft:birch_slab","minecraft:birch_stairs","minecraft:birch_trapdoor","minecraft:birch_wall_sign","minecraft:birch_wood","minecraft:black_banner","minecraft:black_bed","minecraft:black_candle_cake","minecraft:black_carpet","minecraft:black_concrete","minecraft:black_concrete_powder","minecraft:black_glazed_terracotta","minecraft:black_shulker_box","minecraft:black_stained_glass","minecraft:black_stained_glass_pane","minecraft:black_terracotta","minecraft:black_wall_banner","minecraft:black_wool","minecraft:blackstone","minecraft:blackstone_slab","minecraft:blackstone_stairs","minecraft:blackstone_wall","minecraft:blast_furnace","minecraft:blue_banner","minecraft:blue_bed","minecraft:blue_candle_cake","minecraft:blue_carpet","minecraft:blue_concrete","minecraft:blue_concrete_powder","minecraft:blue_glazed_terracotta","minecraft:blue_ice","minecraft:blue_orchid","minecraft:blue_shulker_box","minecraft:blue_stained_glass","minecraft:blue_stained_glass_pane","minecraft:blue_terracotta","minecraft:blue_wall_banner","minecraft:blue_wool","minecraft:bone_block","minecraft:bookshelf","minecraft:brain_coral","minecraft:brain_coral_block","minecraft:brain_coral_fan","minecraft:brain_coral_wall_fan","minecraft:brewing_stand","minecraft:brick_slab","minecraft:brick_stairs","minecraft:brick_wall","minecraft:bricks","minecraft:brown_banner","minecraft:brown_bed","minecraft:brown_candle_cake","minecraft:brown_carpet","minecraft:brown_concrete","minecraft:brown_concrete_powder","minecraft:brown_glazed_terracotta","minecraft:brown_mushroom","minecraft:brown_mushroom_block","minecraft:brown_shulker_box","minecraft:brown_stained_glass","minecraft:brown_stained_glass_pane","minecraft:brown_terracotta","minecraft:brown_wall_banner","minecraft:brown_wool","minecraft:bubble_column","minecraft:bubble_coral","minecraft:bubble_coral_block","minecraft:bubble_coral_fan","minecraft:bubble_coral_wall_fan","minecraft:budding_amethyst","minecraft:cactus","minecraft:cake","minecraft:calcite","minecraft:campfire","minecraft:candle_cake","minecraft:carrots","minecraft:cartography_table","minecraft:carved_pumpkin","minecraft:cauldron","minecraft:chain","minecraft:chain_command_block","minecraft:chest","minecraft:chipped_anvil","minecraft:chiseled_deepslate","minecraft:chiseled_nether_bricks","minecraft:chiseled_polished_blackstone","minecraft:chiseled_quartz_block","minecraft:chiseled_red_sandstone","minecraft:chiseled_sandstone","minecraft:chiseled_stone_bricks","minecraft:chorus_flower","minecraft:chorus_plant","minecraft:clay","minecraft:coal_block","minecraft:coal_ore","minecraft:coarse_dirt","minecraft:cobbled_deepslate","minecraft:cobbled_deepslate_slab","minecraft:cobbled_deepslate_stairs","minecraft:cobbled_deepslate_wall","minecraft:cobblestone","minecraft:cobblestone_slab","minecraft:cobblestone_stairs","minecraft:cobblestone_wall","minecraft:cocoa","minecraft:command_block","minecraft:comparator","minecraft:composter","minecraft:conduit","minecraft:copper_block","minecraft:copper_ore","minecraft:cracked_deepslate_bricks","minecraft:cracked_deepslate_tiles","minecraft:cracked_nether_bricks","minecraft:cracked_polished_blackstone_bricks","minecraft:cracked_stone_bricks","minecraft:crafting_table","minecraft:creeper_head","minecraft:creeper_wall_head","minecraft:crimson_door","minecraft:crimson_fence","minecraft:crimson_fence_gate","minecraft:crimson_fungus","minecraft:crimson_hyphae","minecraft:crimson_nylium","minecraft:crimson_planks","minecraft:crimson_pressure_plate","minecraft:crimson_roots","minecraft:crimson_sign","minecraft:crimson_slab","minecraft:crimson_stairs","minecraft:crimson_stem","minecraft:crimson_trapdoor","minecraft:crimson_wall_sign","minecraft:cut_copper","minecraft:cut_copper_slab","minecraft:cut_copper_stairs","minecraft:cut_red_sandstone","minecraft:cut_red_sandstone_slab","minecraft:cut_sandstone","minecraft:cut_sandstone_slab","minecraft:cyan_banner","minecraft:cyan_bed","minecraft:cyan_candle_cake","minecraft:cyan_carpet","minecraft:cyan_concrete","minecraft:cyan_concrete_powder","minecraft:cyan_glazed_terracotta","minecraft:cyan_shulker_box","minecraft:cyan_stained_glass","minecraft:cyan_stained_glass_pane","minecraft:cyan_terracotta","minecraft:cyan_wall_banner","minecraft:cyan_wool","minecraft:damaged_anvil","minecraft:dandelion","minecraft:dark_oak_door","minecraft:dark_oak_fence","minecraft:dark_oak_fence_gate","minecraft:dark_oak_leaves","minecraft:dark_oak_log","minecraft:dark_oak_planks","minecraft:dark_oak_pressure_plate","minecraft:dark_oak_sapling","minecraft:dark_oak_sign","minecraft:dark_oak_slab","minecraft:dark_oak_stairs","minecraft:dark_oak_trapdoor","minecraft:dark_oak_wall_sign","minecraft:dark_oak_wood","minecraft:dark_prismarine","minecraft:dark_prismarine_slab","minecraft:dark_prismarine_stairs","minecraft:daylight_detector","minecraft:dead_brain_coral","minecraft:dead_brain_coral_block","minecraft:dead_brain_coral_fan","minecraft:dead_brain_coral_wall_fan","minecraft:dead_bubble_coral","minecraft:dead_bubble_coral_block","minecraft:dead_bubble_coral_fan","minecraft:dead_fire_coral_block","minecraft:dead_fire_coral_fan","minecraft:dead_fire_coral_wall_fan","minecraft:dead_horn_coral","minecraft:dead_horn_coral_block","minecraft:dead_horn_coral_fan","minecraft:dead_horn_coral_wall_fan","minecraft:dead_tube_coral","minecraft:dead_tube_coral_block","minecraft:dead_tube_coral_fan","minecraft:dead_tube_coral_wall_fan","minecraft:deepslate","minecraft:deepslate_brick_slab","minecraft:deepslate_brick_stairs","minecraft:deepslate_brick_wall","minecraft:deepslate_bricks","minecraft:deepslate_coal_ore","minecraft:deepslate_copper_ore","minecraft:deepslate_diamond_ore","minecraft:deepslate_emerald_ore","minecraft:deepslate_gold_ore","minecraft:deepslate_iron_ore","minecraft:deepslate_lapis_ore","minecraft:deepslate_redstone_ore","minecraft:deepslate_tile_slab","minecraft:deepslate_tile_stairs","minecraft:deepslate_tile_wall","minecraft:deepslate_tiles","minecraft:detector_rail","minecraft:diamond_block","minecraft:diamond_ore","minecraft:diorite","minecraft:diorite_slab","minecraft:diorite_stairs","minecraft:diorite_wall","minecraft:dirt","minecraft:dirt_path","minecraft:dispenser","minecraft:dragon_egg","minecraft:dragon_head","minecraft:dragon_wall_head","minecraft:dried_kelp_block","minecraft:dripstone_block","minecraft:dropper","minecraft:emerald_block","minecraft:emerald_ore","minecraft:enchanting_table","minecraft:end_gateway","minecraft:end_rod","minecraft:end_stone","minecraft:end_stone_brick_slab","minecraft:end_stone_brick_stairs","minecraft:end_stone_brick_wall","minecraft:end_stone_bricks","minecraft:ender_chest","minecraft:exposed_copper","minecraft:exposed_cut_copper","minecraft:exposed_cut_copper_slab","minecraft:exposed_cut_copper_stairs","minecraft:farmland","minecraft:fire_coral","minecraft:fire_coral_block","minecraft:fire_coral_fan","minecraft:fire_coral_wall_fan","minecraft:fletching_table","minecraft:flowering_azalea","minecraft:flowering_azalea_leaves","minecraft:frosted_ice","minecraft:furnace","minecraft:gilded_blackstone","minecraft:glass","minecraft:glass_pane","minecraft:glowstone","minecraft:gold_block","minecraft:gold_ore","minecraft:granite","minecraft:granite_slab","minecraft:granite_stairs","minecraft:granite_wall","minecraft:grass_block","minecraft:gravel","minecraft:gray_banner","minecraft:gray_bed","minecraft:gray_candle_cake","minecraft:gray_carpet","minecraft:gray_concrete","minecraft:gray_concrete_powder","minecraft:gray_glazed_terracotta","minecraft:gray_shulker_box","minecraft:gray_stained_glass","minecraft:gray_stained_glass_pane","minecraft:gray_terracotta","minecraft:gray_wall_banner","minecraft:gray_wool","minecraft:green_banner","minecraft:green_bed","minecraft:green_candle_cake","minecraft:green_carpet","minecraft:green_concrete","minecraft:green_concrete_powder","minecraft:green_glazed_terracotta","minecraft:green_shulker_box","minecraft:green_stained_glass","minecraft:green_stained_glass_pane","minecraft:green_terracotta","minecraft:green_wall_banner","minecraft:green_wool","minecraft:grindstone","minecraft:hanging_roots","minecraft:hay_block","minecraft:heavy_weighted_pressure_plate","minecraft:honey_block","minecraft:honeycomb_block","minecraft:hopper","minecraft:horn_coral","minecraft:horn_coral_block","minecraft:horn_coral_fan","minecraft:horn_coral_wall_fan","minecraft:ice","minecraft:infested_chiseled_stone_bricks","minecraft:infested_cobblestone","minecraft:infested_cracked_stone_bricks","minecraft:infested_deepslate","minecraft:infested_mossy_stone_bricks","minecraft:infested_stone","minecraft:infested_stone_bricks","minecraft:iron_bars","minecraft:iron_block","minecraft:iron_door","minecraft:iron_ore","minecraft:iron_trapdoor","minecraft:jack_o_lantern","minecraft:jigsaw","minecraft:jukebox","minecraft:jungle_door","minecraft:jungle_fence","minecraft:jungle_fence_gate","minecraft:jungle_leaves","minecraft:jungle_log","minecraft:jungle_planks","minecraft:jungle_pressure_plate","minecraft:jungle_sapling","minecraft:jungle_sign","minecraft:jungle_slab","minecraft:jungle_stairs","minecraft:jungle_trapdoor","minecraft:jungle_wall_sign","minecraft:jungle_wood","minecraft:kelp","minecraft:kelp_plant","minecraft:ladder","minecraft:lantern","minecraft:lapis_block","minecraft:lapis_ore","minecraft:large_amethyst_bud","minecraft:large_fern","minecraft:lava_cauldron","minecraft:lectern","minecraft:lever","minecraft:light","minecraft:light_blue_banner","minecraft:light_blue_bed","minecraft:light_blue_candle_cake","minecraft:light_blue_carpet","minecraft:light_blue_concrete","minecraft:light_blue_concrete_powder","minecraft:light_blue_glazed_terracotta","minecraft:light_blue_shulker_box","minecraft:light_blue_stained_glass","minecraft:light_blue_stained_glass_pane","minecraft:light_blue_terracotta","minecraft:light_blue_wall_banner","minecraft:light_blue_wool","minecraft:light_gray_banner","minecraft:light_gray_bed","minecraft:light_gray_candle_cake","minecraft:light_gray_carpet","minecraft:light_gray_concrete","minecraft:light_gray_concrete_powder","minecraft:light_gray_glazed_terracotta","minecraft:light_gray_shulker_box","minecraft:light_gray_stained_glass","minecraft:light_gray_stained_glass_pane","minecraft:light_gray_terracotta","minecraft:light_gray_wall_banner","minecraft:light_gray_wool","minecraft:light_weighted_pressure_plate","minecraft:lightning_rod","minecraft:lilac","minecraft:lily_of_the_valley","minecraft:lily_pad","minecraft:lime_banner","minecraft:lime_bed","minecraft:lime_candle_cake","minecraft:lime_carpet","minecraft:lime_concrete","minecraft:lime_concrete_powder","minecraft:lime_glazed_terracotta","minecraft:lime_shulker_box","minecraft:lime_stained_glass","minecraft:lime_stained_glass_pane","minecraft:lime_terracotta","minecraft:lime_wall_banner","minecraft:lime_wool","minecraft:lodestone","minecraft:loom","minecraft:magenta_banner","minecraft:magenta_bed","minecraft:magenta_candle_cake","minecraft:magenta_carpet","minecraft:magenta_concrete","minecraft:magenta_concrete_powder","minecraft:magenta_glazed_terracotta","minecraft:magenta_shulker_box","minecraft:magenta_stained_glass","minecraft:magenta_stained_glass_pane","minecraft:magenta_terracotta","minecraft:magenta_wall_banner","minecraft:magenta_wool","minecraft:magma_block","minecraft:medium_amethyst_bud","minecraft:melon","minecraft:melon_stem","minecraft:moss_block","minecraft:moss_carpet","minecraft:mossy_cobblestone","minecraft:mossy_cobblestone_slab","minecraft:mossy_cobblestone_stairs","minecraft:mossy_cobblestone_wall","minecraft:mossy_stone_brick_slab","minecraft:mossy_stone_brick_stairs","minecraft:mossy_stone_brick_wall","minecraft:mossy_stone_bricks","minecraft:moving_piston","minecraft:mushroom_stem","minecraft:mycelium","minecraft:nether_brick_fence","minecraft:nether_brick_slab","minecraft:nether_brick_stairs","minecraft:nether_brick_wall","minecraft:nether_bricks","minecraft:nether_gold_ore","minecraft:nether_quartz_ore","minecraft:nether_sprouts","minecraft:nether_wart","minecraft:nether_wart_block","minecraft:netherite_block","minecraft:netherrack","minecraft:note_block","minecraft:oak_door","minecraft:oak_fence","minecraft:oak_fence_gate","minecraft:oak_leaves","minecraft:oak_log","minecraft:oak_planks","minecraft:oak_sapling","minecraft:oak_sign","minecraft:oak_slab","minecraft:oak_stairs","minecraft:oak_trapdoor","minecraft:oak_wall_sign","minecraft:oak_wood","minecraft:observer","minecraft:orange_banner","minecraft:orange_bed","minecraft:orange_candle_cake","minecraft:orange_carpet","minecraft:orange_concrete","minecraft:orange_concrete_powder","minecraft:orange_glazed_terracotta","minecraft:orange_shulker_box","minecraft:orange_stained_glass","minecraft:orange_stained_glass_pane","minecraft:orange_terracotta","minecraft:orange_tulip","minecraft:orange_wall_banner","minecraft:orange_wool","minecraft:oxeye_daisy","minecraft:oxidized_copper","minecraft:oxidized_cut_copper","minecraft:oxidized_cut_copper_slab","minecraft:oxidized_cut_copper_stairs","minecraft:packed_ice","minecraft:peony","minecraft:petrified_oak_slab","minecraft:pink_banner","minecraft:pink_bed","minecraft:pink_candle_cake","minecraft:pink_carpet","minecraft:pink_concrete","minecraft:pink_concrete_powder","minecraft:pink_glazed_terracotta","minecraft:pink_shulker_box","minecraft:pink_stained_glass","minecraft:pink_stained_glass_pane","minecraft:pink_terracotta","minecraft:pink_tulip","minecraft:pink_wall_banner","minecraft:pink_wool","minecraft:piston","minecraft:piston_head","minecraft:player_head","minecraft:player_wall_head","minecraft:podzol","minecraft:polished_andesite","minecraft:polished_andesite_slab","minecraft:polished_andesite_stairs","minecraft:polished_basalt","minecraft:polished_blackstone","minecraft:polished_blackstone_brick_slab","minecraft:polished_blackstone_brick_stairs","minecraft:polished_blackstone_brick_wall","minecraft:polished_blackstone_bricks","minecraft:polished_blackstone_slab","minecraft:polished_blackstone_stairs","minecraft:polished_blackstone_wall","minecraft:polished_deepslate","minecraft:polished_deepslate_slab","minecraft:polished_deepslate_stairs","minecraft:polished_deepslate_wall","minecraft:polished_diorite","minecraft:polished_diorite_slab","minecraft:polished_diorite_stairs","minecraft:polished_granite","minecraft:polished_granite_slab","minecraft:polished_granite_stairs","minecraft:poppy","minecraft:potatoes","minecraft:potted_acacia_sapling","minecraft:potted_allium","minecraft:potted_azalea_bush","minecraft:potted_azure_bluet","minecraft:potted_bamboo","minecraft:potted_birch_sapling","minecraft:potted_blue_orchid","minecraft:potted_brown_mushroom","minecraft:potted_cactus","minecraft:potted_crimson_fungus","minecraft:potted_crimson_roots","minecraft:potted_dandelion","minecraft:potted_dark_oak_sapling","minecraft:potted_dead_bush","minecraft:potted_fern","minecraft:potted_flowering_azalea_bush","minecraft:potted_jungle_sapling","minecraft:potted_lily_of_the_valley","minecraft:potted_oak_sapling","minecraft:potted_orange_tulip","minecraft:potted_oxeye_daisy","minecraft:potted_pink_tulip","minecraft:potted_poppy","minecraft:potted_red_mushroom","minecraft:potted_red_tulip","minecraft:potted_spruce_sapling","minecraft:potted_warped_fungus","minecraft:potted_warped_roots","minecraft:potted_white_tulip","minecraft:potted_wither_rose","minecraft:powder_snow","minecraft:powder_snow_cauldron","minecraft:powered_rail","minecraft:prismarine","minecraft:prismarine_brick_slab","minecraft:prismarine_brick_stairs","minecraft:prismarine_bricks","minecraft:prismarine_slab","minecraft:prismarine_stairs","minecraft:prismarine_wall","minecraft:pumpkin","minecraft:purple_bed","minecraft:purple_candle_cake","minecraft:purple_carpet","minecraft:purple_concrete","minecraft:purple_concrete_powder","minecraft:purple_glazed_terracotta","minecraft:purple_shulker_box","minecraft:purple_stained_glass","minecraft:purple_stained_glass_pane","minecraft:purple_terracotta","minecraft:purple_wall_banner","minecraft:purple_wool","minecraft:purpur_block","minecraft:purpur_pillar","minecraft:purpur_slab","minecraft:purpur_stairs","minecraft:quartz_block","minecraft:quartz_bricks","minecraft:quartz_pillar","minecraft:quartz_slab","minecraft:quartz_stairs","minecraft:rail","minecraft:raw_copper_block","minecraft:raw_gold_block","minecraft:raw_iron_block","minecraft:red_banner","minecraft:red_bed","minecraft:red_candle_cake","minecraft:red_carpet","minecraft:red_concrete","minecraft:red_concrete_powder","minecraft:red_glazed_terracotta","minecraft:red_mushroom","minecraft:red_mushroom_block","minecraft:red_nether_brick_slab","minecraft:red_nether_brick_stairs","minecraft:red_nether_brick_wall","minecraft:red_nether_bricks","minecraft:red_sand","minecraft:red_sandstone","minecraft:red_sandstone_slab","minecraft:red_sandstone_stairs","minecraft:red_sandstone_wall","minecraft:red_shulker_box","minecraft:red_stained_glass","minecraft:red_stained_glass_pane","minecraft:red_terracotta","minecraft:red_tulip","minecraft:red_wall_banner","minecraft:red_wool","minecraft:redstone_block","minecraft:redstone_lamp","minecraft:redstone_ore","minecraft:repeating_command_block","minecraft:respawn_anchor","minecraft:rooted_dirt","minecraft:rose_bush","minecraft:sand","minecraft:sandstone","minecraft:sandstone_slab","minecraft:sandstone_stairs","minecraft:sandstone_wall","minecraft:scaffolding","minecraft:sculk_sensor","minecraft:sculk","minecraft:sea_lantern","minecraft:seagrass","minecraft:shroomlight","minecraft:shulker_box","minecraft:skeleton_skull","minecraft:skeleton_wall_skull","minecraft:slime_block","minecraft:small_amethyst_bud","minecraft:smithing_table","minecraft:smoker","minecraft:smooth_basalt","minecraft:smooth_quartz","minecraft:smooth_quartz_slab","minecraft:smooth_quartz_stairs","minecraft:smooth_red_sandstone","minecraft:smooth_red_sandstone_slab","minecraft:smooth_red_sandstone_stairs","minecraft:smooth_sandstone","minecraft:smooth_sandstone_slab","minecraft:smooth_sandstone_stairs","minecraft:smooth_stone","minecraft:smooth_stone_slab","minecraft:snow_block","minecraft:soul_campfire","minecraft:soul_fire","minecraft:soul_lantern","minecraft:soul_sand","minecraft:soul_soil","minecraft:spawner","minecraft:sponge","minecraft:spore_blossom","minecraft:spruce_door","minecraft:spruce_fence","minecraft:spruce_fence_gate","minecraft:spruce_leaves","minecraft:spruce_log","minecraft:spruce_planks","minecraft:spruce_slab","minecraft:spruce_stairs","minecraft:spruce_trapdoor","minecraft:spruce_wall_sign","minecraft:spruce_wood","minecraft:sticky_piston","minecraft:stone","minecraft:stone_brick_slab","minecraft:stone_brick_stairs","minecraft:stone_brick_wall","minecraft:stone_bricks","minecraft:stone_slab","minecraft:stone_stairs","minecraft:stonecutter","minecraft:stripped_acacia_log","minecraft:stripped_acacia_wood","minecraft:stripped_birch_log","minecraft:stripped_birch_wood","minecraft:stripped_crimson_hyphae","minecraft:stripped_crimson_stem","minecraft:stripped_dark_oak_log","minecraft:stripped_dark_oak_wood","minecraft:stripped_jungle_log","minecraft:stripped_jungle_wood","minecraft:stripped_oak_log","minecraft:stripped_oak_wood","minecraft:stripped_spruce_log","minecraft:stripped_spruce_wood","minecraft:stripped_warped_hyphae","minecraft:stripped_warped_stem","minecraft:sweet_berry_bush","minecraft:tall_grass","minecraft:tall_seagrass","minecraft:target","minecraft:terracotta","minecraft:tinted_glass","minecraft:tnt","minecraft:trapped_chest","minecraft:tripwire","minecraft:tripwire_hook","minecraft:tube_coral","minecraft:tube_coral_block","minecraft:tube_coral_fan","minecraft:tube_coral_wall_fan","minecraft:tuff","minecraft:turtle_egg","minecraft:twisting_vines_plant","minecraft:warped_door","minecraft:warped_fence","minecraft:warped_fence_gate","minecraft:warped_hyphae","minecraft:warped_nylium","minecraft:warped_planks","minecraft:warped_slab","minecraft:warped_stairs","minecraft:warped_trapdoor","minecraft:warped_wall_sign","minecraft:warped_wart_block","minecraft:water_cauldron","minecraft:waxed_copper_block","minecraft:waxed_cut_copper","minecraft:waxed_cut_copper_slab","minecraft:waxed_cut_copper_stairs","minecraft:waxed_exposed_copper","minecraft:waxed_exposed_cut_copper","minecraft:waxed_exposed_cut_copper_slab","minecraft:waxed_exposed_cut_copper_stairs","minecraft:waxed_oxidized_copper","minecraft:waxed_oxidized_cut_copper","minecraft:waxed_oxidized_cut_copper_slab","minecraft:waxed_oxidized_cut_copper_stairs","minecraft:waxed_weathered_copper","minecraft:waxed_weathered_cut_copper","minecraft:waxed_weathered_cut_copper_slab","minecraft:waxed_weathered_cut_copper_stairs","minecraft:weathered_copper","minecraft:weathered_cut_copper","minecraft:weathered_cut_copper_slab","minecraft:weathered_cut_copper_stairs","minecraft:weeping_vines_plant","minecraft:wet_sponge","minecraft:wheat","minecraft:white_banner","minecraft:white_bed","minecraft:white_candle_cake","minecraft:white_carpet","minecraft:white_concrete","minecraft:white_concrete_powder","minecraft:white_glazed_terracotta","minecraft:white_shulker_box","minecraft:white_stained_glass","minecraft:white_stained_glass_pane","minecraft:white_terracotta","minecraft:white_tulip","minecraft:white_wall_banner","minecraft:white_wool","minecraft:wither_rose","minecraft:wither_skeleton_skull","minecraft:wither_skeleton_wall_skull","minecraft:yellow_banner","minecraft:yellow_bed","minecraft:void_air","minecraft:cave_air","minecraft:yellow_candle_cake","minecraft:yellow_carpet","minecraft:yellow_concrete","minecraft:yellow_concrete_powder","minecraft:yellow_glazed_terracotta","minecraft:yellow_shulker_box","minecraft:yellow_stained_glass","minecraft:yellow_stained_glass_pane","minecraft:yellow_terracotta","minecraft:yellow_wool"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/base_stone_overworld.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/base_stone_overworld.json new file mode 100644 index 0000000..320cd5e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/base_stone_overworld.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:tuff", + "minecraft:deepslate", + "minecraft:blackstone", + "minecraft:dripstone_block", + "minecraft:brown_concrete", + "minecraft:brown_concrete_powder", + "minecraft:moss_block", + "minecraft:green_concrete", + "minecraft:orange_concrete", + "minecraft:magma_block", + "minecraft:calcite", + "minecraft:basalt" + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/cheese.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/cheese.json new file mode 100644 index 0000000..36bcaa2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/cheese.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:lava","minecraft:cobweb"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/dangerous.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/dangerous.json new file mode 100644 index 0000000..f849d16 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/dangerous.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:lava","minecraft:fire"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/pillar_go_through.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/pillar_go_through.json new file mode 100644 index 0000000..751113b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/blocks/pillar_go_through.json @@ -0,0 +1,18 @@ +{"replace":false,"values":[ +"minecraft:tuff", +"minecraft:air", +"minecraft:cave_air", +"minecraft:deepslate", +"minecraft:ice", +"minecraft:gravel", +"minecraft:water", +"minecraft:lava", +"minecraft:bedrock", +"minecraft:packed_ice", +"minecraft:sculk", +"minecraft:sculk_sensor", +"minecraft:sculk_shrieker", +"minecraft:sculk_catalyst", +"minecraft:glow_lichen", +"minecraft:sculk_vein" +]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/damage_type/bypass.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/damage_type/bypass.json new file mode 100644 index 0000000..8677d2d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/damage_type/bypass.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:arrow" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/damage_type/player_attack.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/damage_type/player_attack.json new file mode 100644 index 0000000..9a8d3b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/damage_type/player_attack.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:player_attack" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/damage_type/projectile.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/damage_type/projectile.json new file mode 100644 index 0000000..884ecb7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/damage_type/projectile.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:fireworks", + "minecraft:fireball", + "minecraft:trident" + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/aggro.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/aggro.json new file mode 100644 index 0000000..22834c5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/aggro.json @@ -0,0 +1,19 @@ +{ + "values": [ + "minecraft:zombie", + "minecraft:skeleton", + "minecraft:spider", + "minecraft:pillager", + "minecraft:slime", + "minecraft:wither_skeleton", + "minecraft:vindicator", + "minecraft:iron_golem", + "minecraft:enderman", + "minecraft:zombified_piglin", + "minecraft:drowned", + "minecraft:evoker", + "minecraft:witch", + "minecraft:creeper", + "minecraft:ravager" + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/all_but_enderman.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/all_but_enderman.json new file mode 100644 index 0000000..25d30b3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/all_but_enderman.json @@ -0,0 +1,19 @@ +{ + "values": [ + "minecraft:drowned", + "minecraft:evoker", + "minecraft:iron_golem", + "minecraft:pillager", + "minecraft:iron_golem", + "minecraft:silverfish", + "minecraft:skeleton", + "minecraft:slime", + "minecraft:spider", + "minecraft:vindicator", + "minecraft:witch", + "minecraft:wither", + "minecraft:wither_skeleton", + "minecraft:zombie", + "minecraft:zombified_piglin" + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/all_living.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/all_living.json new file mode 100644 index 0000000..d84efc9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/all_living.json @@ -0,0 +1,78 @@ +{ + "values": [ + "minecraft:allay", + "minecraft:axolotl", + "minecraft:bat", + "minecraft:bee", + "minecraft:piglin", + "minecraft:cat", + "minecraft:cave_spider", + "minecraft:chicken", + "minecraft:cod", + "minecraft:cow", + "minecraft:creeper", + "minecraft:dolphin", + "minecraft:donkey", + "minecraft:drowned", + "minecraft:elder_guardian", + "minecraft:ender_dragon", + "minecraft:enderman", + "minecraft:endermite", + "minecraft:evoker", + "minecraft:fox", + "minecraft:frog", + "minecraft:ghast", + "minecraft:goat", + "minecraft:guardian", + "ravager", + "minecraft:hoglin", + "minecraft:horse", + "minecraft:husk", + "minecraft:iron_golem", + "minecraft:llama", + "minecraft:magma_cube", + "minecraft:mooshroom", + "minecraft:mule", + "minecraft:ocelot", + "minecraft:parrot", + "minecraft:phantom", + "minecraft:pig", + "minecraft:piglin", + "minecraft:piglin_brute", + "minecraft:pillager", + "minecraft:player", + "minecraft:polar_bear", + "minecraft:pufferfish", + "minecraft:rabbit", + "minecraft:iron_golem", + "minecraft:salmon", + "minecraft:sheep", + "minecraft:shulker", + "minecraft:silverfish", + "minecraft:skeleton", + "minecraft:slime", + "minecraft:spider", + "minecraft:squid", + "minecraft:stray", + "minecraft:strider", + "minecraft:sniffer", + "minecraft:camel", + "minecraft:tadpole", + "minecraft:turtle", + "minecraft:vex", + "minecraft:villager", + "minecraft:vindicator", + "minecraft:wandering_trader", + "minecraft:warden", + "minecraft:witch", + "minecraft:wither", + "minecraft:wither_skeleton", + "minecraft:wolf", + "minecraft:zoglin", + "minecraft:zombie", + "minecraft:zombie_horse", + "minecraft:zombified_piglin", + "minecraft:zombie_villager" + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/big.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/big.json new file mode 100644 index 0000000..cc0cb77 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/big.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:iron_golem", + "minecraft:ravager", + "minecraft:slime" + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/markers.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/markers.json new file mode 100644 index 0000000..8c3b4f0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/markers.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:marker", + "minecraft:item" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/mobs.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/mobs.json new file mode 100644 index 0000000..9e9a078 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/mobs.json @@ -0,0 +1,25 @@ +{ + "values": [ + "minecraft:marker", + "minecraft:area_effect_cloud", + "minecraft:item", + "minecraft:creeper", + "minecraft:drowned", + "minecraft:enderman", + "minecraft:evoker", + "minecraft:iron_golem", + "minecraft:pillager", + "minecraft:iron_golem", + "minecraft:silverfish", + "minecraft:skeleton", + "minecraft:slime", + "minecraft:spider", + "minecraft:vindicator", + "minecraft:witch", + "minecraft:wither", + "minecraft:wither_skeleton", + "minecraft:zombie", + "minecraft:creeper", + "minecraft:zombified_piglin" + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/projectiles.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/projectiles.json new file mode 100644 index 0000000..989ecba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/projectiles.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:firework_rocket", + "#arrows" + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/ranged.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/ranged.json new file mode 100644 index 0000000..e06af61 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/entity_types/ranged.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:skeleton", + "minecraft:pillager", + "piglin" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/chest.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/chest.json new file mode 100644 index 0000000..f7fa5e4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/chest.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:leather_chestplate","minecraft:chainmail_chestplate","minecraft:iron_chestplate","minecraft:golden_chestplate","minecraft:diamond_chestplate","minecraft:netherite_chestplate","minecraft:elytra"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/enchantable.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/enchantable.json new file mode 100644 index 0000000..1db40aa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/enchantable.json @@ -0,0 +1,16 @@ +{ + "values": [ + "#minecraft:swords", + "#minecraft:shovels", + "#minecraft:pickaxes", + "#minecraft:axes", + "#minecraft:hoes", + "minecraft:bow", + "minecraft:crossbow", + "minecraft:trident", + "minecraft:book", + "minecraft:brush", + "minecraft:shield", + "#minecraft:trimmable_armor" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/feet.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/feet.json new file mode 100644 index 0000000..080af34 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/feet.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:leather_boots","minecraft:chainmail_boots","minecraft:iron_boots","minecraft:golden_boots","minecraft:diamond_boots","minecraft:netherite_boots"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/head.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/head.json new file mode 100644 index 0000000..cabd797 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/head.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:leather_helmet","minecraft:chainmail_helmet","minecraft:iron_helmet","minecraft:golden_helmet","minecraft:diamond_helmet","minecraft:netherite_helmet","minecraft:turtle_helmet","player_head","zombie_head","wither_skeleton_skull","skeleton_skull","creeper_head","dragon_head"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/high_tier.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/high_tier.json new file mode 100644 index 0000000..394a36a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/high_tier.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:iron_chestplate","minecraft:diamond_chestplate","minecraft:netherite_chestplate"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/legs.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/legs.json new file mode 100644 index 0000000..f09e1a9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/legs.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:leather_leggings","minecraft:chainmail_leggings","minecraft:iron_leggings","minecraft:golden_leggings","minecraft:diamond_leggings","minecraft:netherite_leggings"]} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/sharpness.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/sharpness.json new file mode 100644 index 0000000..174256f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/sharpness.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:swords", + "#minecraft:axes", + "minecraft:trident", + "minecraft:brush", + "minecraft:shield", + "#minecraft:hoes" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/tools.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/tools.json new file mode 100644 index 0000000..7359973 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/tags/items/tools.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:shovels", + "#minecraft:pickaxes", + "#minecraft:axes", + "#minecraft:hoes" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/amethyst_caves.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/amethyst_caves.json new file mode 100644 index 0000000..bb31403 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/amethyst_caves.json @@ -0,0 +1,175 @@ +{ + "temperature": 0.8, + "downfall": 0.4, + "has_precipitation": false, + "effects": { + "sky_color": 11539919, + "fog_color": 11539919, + "water_color": 11539919, + "water_fog_color": 11539919, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.overworld.deep_dark", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "firework" + }, + "probability": 0.00025 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 5, + "minCount": 1, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/diamond", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "infinity_cave:amethyst_caves/calcite_rim", + "infinity_cave:amethyst_caves/hanging_crystals", + "infinity_cave:amethyst_caves/patch_floor", + "infinity_cave:amethyst_caves/patch_ceiling", + "infinity_cave:amethyst_caves/patches" + ], + [ + "minecraft:spring_water" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/deeprock_caverns.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/deeprock_caverns.json new file mode 100644 index 0000000..de1e42d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/deeprock_caverns.json @@ -0,0 +1,178 @@ +{ + "temperature": 1, + "downfall": 0, + "has_precipitation": false, + "effects": { + "sky_color": 3884377, + "fog_color": 3884377, + "water_color": 6199807, + "water_fog_color": 6199807, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.overworld.deep_dark", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "smoke" + }, + "probability": 0.001 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 80 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:wither_skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 15 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [ + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "infinity_cave:deeprock_caverns/patches", + "infinity_cave:deeprock_caverns/patches_2", + "infinity_cave:deeprock_caverns/patches_3", + "infinity_cave:deeprock_caverns/patch_ceiling", + "infinity_cave:deeprock_caverns/pillar", + "infinity_cave:deeprock_caverns/patch_floor", + "infinity_cave:deeprock_caverns/cobwebs" + ], + [ + "minecraft:spring_lava" + ], + [ + "infinity_cave:deeprock_caverns/replace", + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/frozen_caves.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/frozen_caves.json new file mode 100644 index 0000000..5e22459 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/frozen_caves.json @@ -0,0 +1,178 @@ +{ + "temperature": -1, + "downfall": 0, + "has_precipitation": false, + "effects": { + "sky_color": 2088434, + "fog_color": 2088434, + "water_color": 164594, + "water_fog_color": 164594, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.overworld.deep_dark", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "snowflake" + }, + "probability": 0.005 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 40 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:stray", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [ + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [ + ], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/lapis", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "infinity_cave:frozen_caves/ice_spike", + "infinity_cave:frozen_caves/delta", + "infinity_cave:frozen_caves/patch_floor", + "infinity_cave:frozen_caves/patch_ceiling", + "infinity_cave:frozen_caves/patches", + "infinity_cave:frozen_caves/patches_2" + ], + [ + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/limestone_grotto.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/limestone_grotto.json new file mode 100644 index 0000000..6e4b8bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/limestone_grotto.json @@ -0,0 +1,181 @@ +{ + "temperature": 1, + "downfall": 0, + "has_precipitation": false, + "effects": { + "sky_color": 12089650, + "fog_color": 12089650, + "water_color": 4898303, + "water_fog_color": 4898303, + "foliage_color": 12089650, + "grass_color": 12089650, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.nether.crimson_forest", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "ash" + }, + "probability": 0.0125 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:drowned", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/gold", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling" + ], + [ + "infinity_cave:limestone_grotto/patch_floor", + "infinity_cave:limestone_grotto/patch_ceiling", + "infinity_cave:limestone_grotto/patches_4", + "infinity_cave:limestone_grotto/patches", + "infinity_cave:limestone_grotto/patches_2", + "infinity_cave:limestone_grotto/patches_3", + "infinity_cave:limestone_grotto/delta", + "infinity_cave:limestone_grotto/hanging_roots", + "infinity_cave:limestone_grotto/pebbles" + ], + [ + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:warm_ocean_vegetation" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/molten_caves.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/molten_caves.json new file mode 100644 index 0000000..a8b2fa3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/molten_caves.json @@ -0,0 +1,175 @@ +{ + "temperature": 2, + "downfall": 0, + "has_precipitation": false, + "effects": { + "sky_color": 16738836, + "fog_color": 16738836, + "water_color": 10933759, + "water_fog_color": 10933759, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.nether.crimson_forest", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "small_flame" + }, + "probability": 0.0125 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:wither_skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 30 + }, + { + "type": "minecraft:zombified_piglin", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:blaze", + "maxCount": 4, + "minCount": 1, + "weight": 15 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/redstone", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "infinity_cave:molten_caves/patches", + "infinity_cave:molten_caves/patches_2", + "infinity_cave:molten_caves/basalt_pillar", + "infinity_cave:molten_caves/patch_ceiling", + "infinity_cave:molten_caves/delta", + "infinity_cave:molten_caves/patch_floor" + ], + [ + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/sulfide_caves.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/sulfide_caves.json new file mode 100644 index 0000000..cafa214 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/biome/sulfide_caves.json @@ -0,0 +1,189 @@ +{ + "temperature": 1, + "downfall": 0, + "has_precipitation": false, + "effects": { + "sky_color": 4259705, + "fog_color": 4259705, + "water_color": 3866396, + "water_fog_color": 3866396, + "foliage_color": 3866396, + "grass_color": 3866396, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.nether.crimson_forest", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "sneeze" + }, + "probability": 0.01 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 40 + }, + { + "type": "minecraft:cave_spider", + "maxCount": 4, + "minCount": 4, + "weight": 40 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 3, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:witch", + "maxCount": 4, + "minCount": 1, + "weight": 15 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [ + ], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/emerald", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "infinity_cave:sulfide_caves/replace", + "infinity_cave:sulfide_caves/patch_ceiling", + "infinity_cave:sulfide_caves/patch_ceiling2", + "infinity_cave:sulfide_caves/patches_2", + "infinity_cave:sulfide_caves/patches", + "infinity_cave:sulfide_caves/vegetation", + "infinity_cave:sulfide_caves/delta", + "infinity_cave:sulfide_caves/bush", + "infinity_cave:sulfide_caves/tree", + "infinity_cave:sulfide_caves/patch_floor" + ], + [ + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/canyon.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/canyon.json new file mode 100644 index 0000000..a2afcaa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/canyon.json @@ -0,0 +1,78 @@ +{ + "type": "minecraft:canyon", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:warped_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.01, + "replaceable": "#minecraft:overworld_carver_replaceables", + "shape": { + "distance_factor": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1, + "min_inclusive": 0.75 + } + }, + "horizontal_radius_factor": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1, + "min_inclusive": 0.75 + } + }, + "thickness": { + "type": "minecraft:trapezoid", + "value": { + "max": 6, + "min": 0, + "plateau": 2 + } + }, + "vertical_radius_center_factor": 0, + "vertical_radius_default_factor": 1, + "width_smoothness": 3 + }, + "vertical_rotation": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.125, + "min_inclusive": -0.125 + } + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 67 + }, + "min_inclusive": { + "absolute": 10 + } + }, + "yScale": 3 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/cave.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/cave.json new file mode 100644 index 0000000..468afa6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/cave.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:crimson_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": -0.4, + "min_inclusive": -1 + } + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.4, + "min_inclusive": 0.7 + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.15, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.3, + "min_inclusive": 0.8 + } + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 180 + }, + "min_inclusive": { + "above_bottom": 168 + } + }, + "yScale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.4, + "min_inclusive": 0.1 + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/cave_extra_underground.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/cave_extra_underground.json new file mode 100644 index 0000000..be117fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/cave_extra_underground.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:oak_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": -0.4, + "min_inclusive": -1 + } + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.4, + "min_inclusive": 0.7 + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.07, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.3, + "min_inclusive": 0.8 + } + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 87 + }, + "min_inclusive": { + "above_bottom": 80 + } + }, + "yScale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.1, + "min_inclusive": 0 + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/insane.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/insane.json new file mode 100644 index 0000000..de16a71 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/insane.json @@ -0,0 +1,72 @@ +{ + "type": "minecraft:canyon", + "config": { + "probability": 0.05, + "y": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 15 + }, + "max_inclusive": { + "absolute": 78 + } + }, + "yScale": 4, + "lava_level": { + "above_bottom": 8 + }, + "replaceable": "#minecraft:overworld_carver_replaceables", + "debug_settings": { + "air_state": { + "Name": "minecraft:air" + }, + "water_state": { + "Name": "minecraft:water", + "Properties": { + "level": "12" + } + }, + "lava_state": { + "Name": "minecraft:lava" + }, + "barrier_state": { + "Name": "minecraft:glass" + } + }, + "vertical_rotation": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": -0.125, + "max_exclusive": 0.125 + } + }, + "shape": { + "distance_factor": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0.6, + "max_exclusive": 1.5 + } + }, + "thickness": { + "type": "minecraft:trapezoid", + "value": { + "min": 0, + "max": 7, + "plateau": 3 + } + }, + "width_smoothness": 3, + "horizontal_radius_factor": { + "type": "minecraft:trapezoid", + "value": { + "min": 0, + "max": 5, + "plateau": 1 + } + }, + "vertical_radius_default_factor": 1.2, + "vertical_radius_center_factor": 0.4 + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/nether_cave.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/nether_cave.json new file mode 100644 index 0000000..a8ba491 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_carver/nether_cave.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:nether_cave", + "config": { + "floor_level": -0.7, + "horizontal_radius_multiplier": 1, + "lava_level": { + "above_bottom": 10 + }, + "probability": 0.2, + "replaceable": "#minecraft:nether_carver_replaceables", + "vertical_radius_multiplier": 1, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 1 + }, + "min_inclusive": { + "absolute": 0 + } + }, + "yScale": 0.5 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/calcite_rim.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/calcite_rim.json new file mode 100644 index 0000000..48996e4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/calcite_rim.json @@ -0,0 +1,26 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:budding_amethyst" + }, + "rim": { + "Name": "minecraft:calcite" + }, + "size": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 3 + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/hanging_crystals.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/hanging_crystals.json new file mode 100644 index 0000000..2a702b3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/hanging_crystals.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block_column", + "config": { + "direction": "down", + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "prioritize_tip": true, + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "weight": 1, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 4 + } + } + }, + { + "weight": 2, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + } + }, + { + "weight": 4, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + } + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:budding_amethyst" + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:amethyst_block" + } + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:amethyst_cluster", + "Properties": { + "waterlogged": "false", + "facing": "down" + } + } + } + } + ] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_ceiling.json new file mode 100644 index 0000000..c78778d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_ceiling.json @@ -0,0 +1,108 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "ceiling", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.9, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 8, + "max_inclusive": 12 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:amethyst_block" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:amethyst_cluster", + "Properties": { + "facing": "down", + "waterlogged": "false" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:large_amethyst_bud", + "Properties": { + "facing": "down", + "waterlogged": "false" + } + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:medium_amethyst_bud", + "Properties": { + "facing": "down", + "waterlogged": "false" + } + } + }, + { + "weight": 4, + "data": { + "Name": "minecraft:small_amethyst_bud", + "Properties": { + "facing": "down", + "waterlogged": "false" + } + } + }, + { + "weight": 5, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "10", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_floor.json new file mode 100644 index 0000000..d874548 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_floor.json @@ -0,0 +1,108 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.9, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 8, + "max_inclusive": 12 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:amethyst_block" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:amethyst_cluster", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:large_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:medium_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + } + }, + { + "weight": 4, + "data": { + "Name": "minecraft:small_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + } + }, + { + "weight": 5, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "10", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/bedrock.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/bedrock.json new file mode 100644 index 0000000..1cc72b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/bedrock.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:geode", + "config": { + "blocks": { + "filling_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bedrock" + } + }, + "inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bedrock" + } + }, + "alternate_inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bedrock" + } + }, + "middle_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bedrock" + } + }, + "outer_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bedrock" + } + }, + "inner_placements": [ + { + "Name": "minecraft:bedrock" + } + ], + "cannot_replace": "#infinity_cave:all_but_base", + "invalid_blocks": "#minecraft:geode_invalid_blocks" + }, + "layers": { + "filling": 25, + "inner_layer": 25, + "middle_layer": 25, + "outer_layer": 25 + }, + "crack": { + "generate_crack_chance": 0 + }, + "noise_multiplier": 0.0, + "use_potential_placements_chance": 0.35, + "use_alternate_layer0_chance": 0.083, + "placements_require_layer0_alternate": true, + "outer_wall_distance": 1, + "distribution_points": 5, + "point_offset": 0, + "min_gen_offset": 0, + "max_gen_offset": 15, + "invalid_blocks_threshold": 999 + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deep_dark/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deep_dark/patch_floor.json new file mode 100644 index 0000000..72a4066 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deep_dark/patch_floor.json @@ -0,0 +1,80 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 8 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.33, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 10 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:sculk" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:deepslate" + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:sculk_vein", + "Properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "7", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/cobwebs.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/cobwebs.json new file mode 100644 index 0000000..c84ca62 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/cobwebs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:cobweb" + } + } + ] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_ceiling.json new file mode 100644 index 0000000..81ecb5c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_ceiling.json @@ -0,0 +1,80 @@ +{ + "type": "minecraft:block_column", + "config": { + "direction": "down", + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "prioritize_tip": true, + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "weight": 3, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 4 + } + } + }, + { + "weight": 2, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + } + }, + { + "weight": 4, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 6 + } + } + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:calcite" + } + } + ] + } + }, + { + "height": 2, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:diorite_wall", + "Properties": { + "waterlogged": "false", + "up": "true", + "west": "none", + "south": "none", + "north": "none", + "east": "none" + } + } + } + } + ] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_floor.json new file mode 100644 index 0000000..3e5f4ac --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_floor.json @@ -0,0 +1,79 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 8 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.33, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 10 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:blackstone" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:blackstone_slab", + "Properties": { + "waterlogged": "false", + "type": "bottom" + } + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:light", + "Properties": { + "waterlogged": "false", + "level": "7" + } + } + } + ] + } + } + }, + "placement": [] + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/replace.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/replace.json new file mode 100644 index 0000000..28ac839 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/replace.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 12, + "max_inclusive": 12 + } + }, + "state": { + "Name": "minecraft:calcite" + }, + "target": { + "Name": "minecraft:basalt" + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/depths.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/depths.json new file mode 100644 index 0000000..f76f21f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/depths.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:geode", + "config": { + "blocks": { + "filling_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "alternate_inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "middle_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "outer_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "inner_placements": [ + { + "Name": "minecraft:air" + } + ], + "cannot_replace": "#infinity_cave:all_but_lava", + "invalid_blocks": "#minecraft:geode_invalid_blocks" + }, + "layers": { + "filling": 25, + "inner_layer": 25, + "middle_layer": 25, + "outer_layer": 25 + }, + "crack": { + "generate_crack_chance": 0 + }, + "noise_multiplier": 0.0, + "use_potential_placements_chance": 0.35, + "use_alternate_layer0_chance": 0.083, + "placements_require_layer0_alternate": true, + "outer_wall_distance": 1, + "distribution_points": 5, + "point_offset": 0, + "min_gen_offset": 0, + "max_gen_offset": 15, + "invalid_blocks_threshold": 999 + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/frozen_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/frozen_caves/delta.json new file mode 100644 index 0000000..ec58c23 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/frozen_caves/delta.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:ice", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:blue_ice" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 3, + "min_inclusive": 2 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 12, + "min_inclusive": 2 + } + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_ceiling.json new file mode 100644 index 0000000..51ac2b3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_ceiling.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:block_column", + "config": { + "direction": "down", + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "prioritize_tip": true, + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "weight": 3, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 6 + } + } + }, + { + "weight": 2, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 4 + } + } + }, + { + "weight": 4, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 9 + } + } + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:light_blue_stained_glass" + } + } + ] + } + }, + { + "height": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 4 + } + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:light_blue_stained_glass_pane", + "Properties": { + "waterlogged": "false", + "west": "true", + "south": "true", + "north": "true", + "east": "true" + } + } + } + } + ] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_floor.json new file mode 100644 index 0000000..3edcb6a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_floor.json @@ -0,0 +1,77 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 8 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.33, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 10 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:ice" + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:tube_coral", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "10", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/big_pillar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/big_pillar.json new file mode 100644 index 0000000..a5f7ff8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/big_pillar.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:large_dripstone", + "config": { + "column_radius": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 14, + "min_inclusive": 5 + } + }, + "floor_to_ceiling_search_range": 45, + "height_scale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1, + "min_inclusive": 0.25 + } + }, + "max_column_radius_to_cave_height_ratio": 0.5, + "min_bluntness_for_wind": 0.8, + "min_radius_for_wind": 4, + "stalactite_bluntness": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1, + "min_inclusive": 0.4 + } + }, + "stalagmite_bluntness": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.0, + "min_inclusive": 0.5 + } + }, + "wind_speed": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.4, + "min_inclusive": 0.05 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ceiling.json new file mode 100644 index 0000000..056c77c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ceiling.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "ceiling", + "depth": 3, + "vertical_range": 1, + "extra_bottom_block_chance": 0.1, + "extra_edge_column_chance": 0.1, + "vegetation_chance": 0.5, + "xz_radius": 3, + "replaceable": "#infinity_cave:pillar_go_through", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 7, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:gravel", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:gravel" + } + }, + { + "weight": 6, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + } + } + }, + "placement": [] + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/delta.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/delta.json new file mode 100644 index 0000000..b13173f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/delta.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:deepslate" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 5, + "min_inclusive": 2 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/lava_path.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/lava_path.json new file mode 100644 index 0000000..85ed025 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/lava_path.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 7 + } + }, + "state": { + "Name": "minecraft:deepslate" + }, + "target": { + "Name": "minecraft:lava" + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/copper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/copper.json new file mode 100644 index 0000000..312d1ec --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/copper.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 20, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_copper_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/diamond.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/diamond.json new file mode 100644 index 0000000..491ee9b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/diamond.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 5, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_diamond_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/emerald.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/emerald.json new file mode 100644 index 0000000..8e90259 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/emerald.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 12, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_emerald_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/gold.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/gold.json new file mode 100644 index 0000000..e312079 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/gold.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 12, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_gold_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/iron.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/iron.json new file mode 100644 index 0000000..77bbf41 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/iron.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_iron_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/lapis.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/lapis.json new file mode 100644 index 0000000..35b8846 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/lapis.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 10, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_lapis_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/redstone.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/redstone.json new file mode 100644 index 0000000..b1b554c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/ores/redstone.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 12, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_redstone_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/pile.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/pile.json new file mode 100644 index 0000000..f40f0f1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/pile.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:gravel" + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:cobblestone" + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:cobbled_deepslate" + } + } + ] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/pillar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/pillar.json new file mode 100644 index 0000000..149472a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/pillar.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "ceiling", + "depth": 86, + "vertical_range": 1, + "extra_bottom_block_chance": 0.1, + "extra_edge_column_chance": 0.1, + "vegetation_chance": 0.95, + "xz_radius": 1, + "replaceable": "#infinity_cave:all_but_base", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:deepslate" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:tuff" + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:basalt_pillar", + "config": {} + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/replace.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/replace.json new file mode 100644 index 0000000..022349b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/replace.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 12, + "max_inclusive": 12 + } + }, + "state": { + "Name": "minecraft:deepslate" + }, + "target": { + "Name": "minecraft:dripstone_block" + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/rock.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/rock.json new file mode 100644 index 0000000..f5e873a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/rock.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:forest_rock", + "config": { + "state": { + "Name": "minecraft:deepslate" + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/small_pillar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/small_pillar.json new file mode 100644 index 0000000..a766095 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/generic/small_pillar.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:large_dripstone", + "config": { + "column_radius": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 9, + "min_inclusive": 3 + } + }, + "floor_to_ceiling_search_range": 25, + "height_scale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1, + "min_inclusive": 0.4 + } + }, + "max_column_radius_to_cave_height_ratio": 0.33, + "min_bluntness_for_wind": 0.6, + "min_radius_for_wind": 4, + "stalactite_bluntness": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.9, + "min_inclusive": 0.3 + } + }, + "stalagmite_bluntness": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.0, + "min_inclusive": 0.4 + } + }, + "wind_speed": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.3, + "min_inclusive": 0.0 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/delta.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/delta.json new file mode 100644 index 0000000..8428b8b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/delta.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:deepslate" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 7, + "min_inclusive": 3 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/hanging_roots.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/hanging_roots.json new file mode 100644 index 0000000..2bb0d34 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/hanging_roots.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:hanging_roots", + "Properties": { + "waterlogged": "false" + } + } + } + ] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_ceiling.json new file mode 100644 index 0000000..8e67bdf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_ceiling.json @@ -0,0 +1,114 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "ceiling", + "depth": 10, + "vertical_range": 1, + "extra_bottom_block_chance": 0.1, + "extra_edge_column_chance": 0.1, + "vegetation_chance": 0.75, + "xz_radius": 1, + "replaceable": "#infinity_cave:all_but_lava", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:block_column", + "config": { + "direction": "down", + "allowed_placement": { + "type": "minecraft:true" + }, + "prioritize_tip": true, + "layers": [ + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "base", + "waterlogged": "false", + "vertical_direction": "down" + } + } + } + }, + { + "height": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "vertical_direction": "down", + "thickness": "middle", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "false" + } + } + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "waterlogged": "false", + "vertical_direction": "down", + "thickness": "tip_merge" + } + } + } + ] + } + } + ] + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_floor.json new file mode 100644 index 0000000..f893a98 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_floor.json @@ -0,0 +1,114 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": 10, + "vertical_range": 1, + "extra_bottom_block_chance": 0.1, + "extra_edge_column_chance": 0.1, + "vegetation_chance": 0.75, + "xz_radius": 1, + "replaceable": "#infinity_cave:all_but_lava", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:block_column", + "config": { + "direction": "up", + "allowed_placement": { + "type": "minecraft:true" + }, + "prioritize_tip": true, + "layers": [ + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "base", + "waterlogged": "false", + "vertical_direction": "up" + } + } + } + }, + { + "height": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "vertical_direction": "up", + "thickness": "middle", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "false" + } + } + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "waterlogged": "false", + "vertical_direction": "up", + "thickness": "tip_merge" + } + } + } + ] + } + } + ] + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/pebbles.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/pebbles.json new file mode 100644 index 0000000..fd05fa7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/limestone_grotto/pebbles.json @@ -0,0 +1,64 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:stone_button", + "Properties": { + "facing": "north", + "face": "floor", + "powered": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:stone_button", + "Properties": { + "facing": "south", + "face": "floor", + "powered": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:stone_button", + "Properties": { + "facing": "east", + "face": "floor", + "powered": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "8", + "waterlogged": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:stone_button", + "Properties": { + "facing": "west", + "face": "floor", + "powered": "false" + } + } + } + ] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/molten_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/molten_caves/delta.json new file mode 100644 index 0000000..255f356 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/molten_caves/delta.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:magma_block" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 3, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 5, + "min_inclusive": 2 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_ceiling.json new file mode 100644 index 0000000..0a75d06 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_ceiling.json @@ -0,0 +1,110 @@ +{ + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction": "down", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 19, + "min_inclusive": 0 + } + }, + "weight": 2 + }, + { + "data": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 2, + "min_inclusive": 0 + } + }, + "weight": 3 + }, + { + "data": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 6, + "min_inclusive": 0 + } + }, + "weight": 10 + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:weeping_vines_plant", + "Properties": { + "berries": "false" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:weeping_vines_plant", + "Properties": { + "berries": "true" + } + }, + "weight": 1 + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:randomized_int_state_provider", + "property": "age", + "source": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:weeping_vines", + "Properties": { + "age": "0" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:weeping_vines", + "Properties": { + "age": "0" + } + }, + "weight": 1 + } + ] + }, + "values": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 25, + "min_inclusive": 23 + } + } + } + } + ], + "prioritize_tip": true + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_floor.json new file mode 100644 index 0000000..ea50931 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_floor.json @@ -0,0 +1,86 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 1 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0, + "extra_edge_column_chance": 0, + "vegetation_chance": 1, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 10 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:orange_concrete" + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:magma_block", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:fire_coral", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "10", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/nothing.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/nothing.json new file mode 100644 index 0000000..9f67c59 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/nothing.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:no_op", + "config": {} + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/spawn_detection.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/spawn_detection.json new file mode 100644 index 0000000..57548cd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/spawn_detection.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:void_air" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/bush.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/bush.json new file mode 100644 index 0000000..1527778 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/bush.json @@ -0,0 +1,60 @@ +{ + "type": "minecraft:tree", + "config": { + "ignore_vines": true, + "force_dirt": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "dirt_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_block" + } + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bamboo_block", + "Properties": { + "axis": "y" + } + } + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "trunk_placer": { + "type": "minecraft:bending_trunk_placer", + "base_height": 1, + "height_rand_a": 3, + "height_rand_b": 2, + "bend_length": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 3 + } + }, + "min_height_for_leaves": 1 + }, + "foliage_placer": { + "type": "minecraft:bush_foliage_placer", + "radius": 3, + "offset": 2, + "height": 1 + }, + "decorators": [] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/delta.json new file mode 100644 index 0000000..d2f5e98 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/delta.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:green_concrete" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 12, + "min_inclusive": 6 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling.json new file mode 100644 index 0000000..106fc9f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling.json @@ -0,0 +1,86 @@ +{ + "type": "minecraft:block_column", + "config": { + "direction": "down", + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "prioritize_tip": true, + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "weight": 3, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 5 + } + } + }, + { + "weight": 2, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 3 + } + } + }, + { + "weight": 4, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 7 + } + } + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:sunflower", + "Properties": { + "half": "lower" + } + } + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:sunflower" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:spore_blossom" + } + } + ] + } + } + ] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling2.json new file mode 100644 index 0000000..0cc95d1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling2.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:vine", + "Properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_floor.json new file mode 100644 index 0000000..bffe0dc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_floor.json @@ -0,0 +1,131 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 1, + "vegetation_chance": 1, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 15, + "max_inclusive": 15 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:moss_block" + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:small_dripleaf", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 4, + "data": { + "Name": "minecraft:dandelion", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 12, + "data": { + "Name": "minecraft:short_grass", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 10, + "data": { + "Name": "minecraft:fern", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:torchflower", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:blue_orchid", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:pitcher_plant", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:rose_bush", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 6, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "7", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/replace.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/replace.json new file mode 100644 index 0000000..dfe9ca1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/replace.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 6, + "max_inclusive": 12 + } + }, + "state": { + "Name": "minecraft:moss_block" + }, + "target": { + "Name": "minecraft:deepslate" + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/tree.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/tree.json new file mode 100644 index 0000000..d79f346 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/tree.json @@ -0,0 +1,103 @@ +{ + "type": "minecraft:tree", + "config": { + "ignore_vines": true, + "force_dirt": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "dirt_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_block" + } + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bamboo_block", + "Properties": { + "axis": "y" + } + } + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "trunk_placer": { + "type": "minecraft:giant_trunk_placer", + "base_height": 7, + "height_rand_a": 3, + "height_rand_b": 2 + }, + "foliage_placer": { + "type": "minecraft:acacia_foliage_placer", + "radius": 3, + "offset": 0 + }, + "decorators": [ + { + "type": "minecraft:trunk_vine" + }, + { + "type": "minecraft:attached_to_leaves", + "probability": 0.3, + "exclusion_radius_xz": 2, + "exclusion_radius_y": 4, + "required_empty_blocks": 1, + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 5, + "data": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + { + "weight": 5, + "data": { + "Name": "minecraft:vine", + "Properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:cave_vines_plant", + "Properties": { + "berries": "true" + } + } + } + ] + }, + "directions": [ + "down" + ] + } + ] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/vegetation.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/vegetation.json new file mode 100644 index 0000000..51bc307 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/configured_feature/sulfide_caves/vegetation.json @@ -0,0 +1,56 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "vertical_range": 5, + "extra_bottom_block_chance": 0, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.5, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 6 + } + }, + "replaceable": "#infinity_cave:all_but_lava", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:green_concrete" + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:moss_block" + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": "minecraft:moss_vegetation", + "placement": [] + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/big_cave.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/big_cave.json new file mode 100644 index 0000000..bae5a05 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/big_cave.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:cache_all_in_cell", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 10, + "to_y": -96, + "from_value": 2, + "to_value": 0.4 + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_2", + "xz_scale": 0.4, + "y_scale": 2.8 + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "rarity_value_mapper": "type_2", + "noise": "minecraft:erosion", + "input": { + "type": "minecraft:interpolated", + "argument": -0.9 + } + }, + "argument2": { + "type": "minecraft:interpolated", + "argument": 0.5 + } + } + } + } + }, + "argument2": 0 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/entrances.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/entrances.json new file mode 100644 index 0000000..043c835 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/entrances.json @@ -0,0 +1,83 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.37, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_entrance", + "xz_scale": 0.75, + "y_scale": 0.5 + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.3, + "from_y": -63, + "to_value": 0.0, + "to_y": 20 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": "infinity_cave:caves/spaghetti_roughness_function", + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "noise": "minecraft:spaghetti_3d_1", + "rarity_value_mapper": "type_1" + }, + "argument2": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "noise": "minecraft:spaghetti_3d_2", + "rarity_value_mapper": "type_1" + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0765, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.011499999999999996, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "max": 1.0, + "min": -1.0 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/noodle.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/noodle.json new file mode 100644 index 0000000..fed99bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/noodle.json @@ -0,0 +1,94 @@ +{ + "type": "minecraft:range_choice", + "input": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": -64.0, + "min_inclusive": -124.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle", + "xz_scale": 0.25, + "y_scale": 0.2 + }, + "when_out_of_range": -1.0 + } + }, + "max_exclusive": 0.0, + "min_inclusive": -1000000.0, + "when_in_range": 64.0, + "when_out_of_range": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": -64.0, + "min_inclusive": -124.0, + "when_in_range": { + "type": "minecraft:add", + "argument1": -0.07500000000000001, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.055, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_thickness", + "xz_scale": 0.25, + "y_scale": 0.2 + } + } + }, + "when_out_of_range": 0.0 + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 3.5, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": -64.0, + "min_inclusive": -124.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_a", + "xz_scale": 0.6666666666666665, + "y_scale": 0.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": -64.0, + "min_inclusive": -124.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_b", + "xz_scale": 0.6666666666666665, + "y_scale": 0.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + } + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/pillars.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/pillars.json new file mode 100644 index 0000000..ef84930 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/pillars.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 2.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar", + "xz_scale": 25.0, + "y_scale": 0.3 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_rareness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": 0.55, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.55, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d.json new file mode 100644 index 0000000..f90c0bb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:clamp", + "input": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_modulator", + "xz_scale": 0.19, + "y_scale": 0.12 + }, + "noise": "infinity_cave:infinity_cave", + "rarity_value_mapper": "type_2" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.123, + "argument2": "infinity_cave:caves/spaghetti_2d_thickness_modulator" + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0, + "argument2": { + "type": "minecraft:mul", + "argument1": 10, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_elevation", + "xz_scale": 0.76, + "y_scale": 0.34 + } + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_y": -128, + "to_y": -56, + "from_value": 10, + "to_value": -10 + } + } + }, + "argument2": "infinity_cave:caves/spaghetti_2d_thickness_modulator" + } + } + }, + "max": 2.0, + "min": -2.0 +} + diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_other.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_other.json new file mode 100644 index 0000000..7d5f880 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_other.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:clamp", + "input": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_modulator", + "xz_scale": 4.2, + "y_scale": 3.5 + }, + "noise": "minecraft:spaghetti_2d", + "rarity_value_mapper": "type_1" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.083, + "argument2": "infinity_cave:caves/spaghetti_2d_thickness_modulator" + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": 8.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_elevation", + "xz_scale": 0.9, + "y_scale": 0.8 + } + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 8.0, + "from_y": -124, + "to_value": 290.0, + "to_y": 3 + } + } + }, + "argument2": "infinity_cave:caves/spaghetti_2d_thickness_modulator" + } + } + }, + "max": 1.0, + "min": -1.0 +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_thickness_modulator.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_thickness_modulator.json new file mode 100644 index 0000000..9e41e98 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_thickness_modulator.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:add", + "argument1": -0.86, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.25000000000000003, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_thickness", + "xz_scale": 1.3, + "y_scale": 1.6 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_roughness_function.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_roughness_function.json new file mode 100644 index 0000000..60586ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/caves/spaghetti_roughness_function.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.075, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.4, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness_modulator", + "xz_scale": 1.65, + "y_scale": 1.75 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness", + "xz_scale": 1.65, + "y_scale": 1.75 + } + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/custom.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/custom.json new file mode 100644 index 0000000..3269e88 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/custom.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:cache_all_in_cell", + "argument": "infinity_cave:caves/spaghetti_2d" + }, + "argument2": { + "type": "minecraft:cache_all_in_cell", + "argument": "infinity_cave:erosion" + } + }, + "argument2": -0.05 +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/erosion.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/erosion.json new file mode 100644 index 0000000..2528220 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/erosion.json @@ -0,0 +1,42 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 50, + "to_y": -70, + "from_value": 1.5, + "to_value": 0.1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_thickness", + "xz_scale": 1, + "y_scale": 7.5 + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "rarity_value_mapper": "type_1", + "noise": "minecraft:patch", + "input": { + "type": "minecraft:interpolated", + "argument": 1 + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": 0.5 + } + } + } + } + }, + "argument2": 0.3 +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise.json new file mode 100644 index 0000000..84df248 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8, + "xz_factor": 100, + "xz_scale": 0.33, + "y_factor": 160, + "y_scale": 0.33 +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise2.json new file mode 100644 index 0000000..365a965 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise2.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8, + "xz_factor": 90, + "xz_scale": 0.33, + "y_factor": 70, + "y_scale": 0.45 +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/terrain/sloped_cheese.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/terrain/sloped_cheese.json new file mode 100644 index 0000000..7758019 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/density_function/terrain/sloped_cheese.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:end_islands" + }, + "argument2": "infinity_cave:terrain/base_3d_noise" +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/noise/infinity_cave.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/noise/infinity_cave.json new file mode 100644 index 0000000..76e945f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/noise/infinity_cave.json @@ -0,0 +1,7 @@ +{ + "firstOctave": -7, + "amplitudes": [ + 0.95, + 0.95 + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/noise_settings/overworld.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/noise_settings/overworld.json new file mode 100644 index 0000000..1fee32c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/noise_settings/overworld.json @@ -0,0 +1,2553 @@ +{ + "sea_level": 63, + "disable_mob_generation": false, + "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": -128, + "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": { + "type": "minecraft:min", + "argument1": "minecraft:overworld/caves/noodle", + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -124, + "max_exclusive": -52, + "when_in_range": "infinity_cave:custom", + "when_out_of_range": 2 + } + } + }, + "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/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/calcite_rim.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/calcite_rim.json new file mode 100644 index 0000000..1de81ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/calcite_rim.json @@ -0,0 +1,17 @@ +{ + "feature": "infinity_cave:amethyst_caves/calcite_rim", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 8 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/hanging_crystals.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/hanging_crystals.json new file mode 100644 index 0000000..4664209 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/hanging_crystals.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:amethyst_caves/hanging_crystals", + "placement": [ + { + "type": "minecraft:count", + "count": 58 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_ceiling.json new file mode 100644 index 0000000..13e26d5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_ceiling.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:amethyst_caves/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "up", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_floor.json new file mode 100644 index 0000000..0813141 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:amethyst_caves/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patches.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patches.json new file mode 100644 index 0000000..5fe841e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:amethyst_block", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 75, + "weight": 2 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deep_dark/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deep_dark/patch_floor.json new file mode 100644 index 0000000..d6c251e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deep_dark/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:deep_dark/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 34 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -58 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/cobwebs.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/cobwebs.json new file mode 100644 index 0000000..5ae28fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/cobwebs.json @@ -0,0 +1,46 @@ +{ + "feature": "infinity_cave:deeprock_caverns/cobwebs", + "placement": [ + { + "type": "minecraft:count", + "count": 18 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -122 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_ceiling.json new file mode 100644 index 0000000..e245879 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_ceiling.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:deeprock_caverns/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 86 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_floor.json new file mode 100644 index 0000000..fa67f16 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:deeprock_caverns/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 34 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches.json new file mode 100644 index 0000000..f42447a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:blackstone", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 100, + "weight": 5 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_2.json new file mode 100644 index 0000000..2ff4334 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_2.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "state": { + "Name": "minecraft:coal_block", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 33, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_3.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_3.json new file mode 100644 index 0000000..e73b522 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_3.json @@ -0,0 +1,52 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "state": { + "Name": "minecraft:calcite" + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 80, + "weight": 2 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/pillar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/pillar.json new file mode 100644 index 0000000..22997c8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/pillar.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:basalt_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": 180 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": -128 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/replace.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/replace.json new file mode 100644 index 0000000..f294b4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/replace.json @@ -0,0 +1,31 @@ +{ + "feature": "infinity_cave:deeprock_caverns/replace", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:count", + "count": 150 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -50 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_111.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_111.json new file mode 100644 index 0000000..bac7ddf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_111.json @@ -0,0 +1,12 @@ +{ + "feature": "infinity_cave:depths", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "absolute": -112 + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_127.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_127.json new file mode 100644 index 0000000..478a9ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_127.json @@ -0,0 +1,12 @@ +{ + "feature": "infinity_cave:depths", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "absolute": -122 + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_63.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_63.json new file mode 100644 index 0000000..93694c5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_63.json @@ -0,0 +1,12 @@ +{ + "feature": "infinity_cave:depths", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "absolute": -64 + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_79.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_79.json new file mode 100644 index 0000000..786ef53 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_79.json @@ -0,0 +1,12 @@ +{ + "feature": "infinity_cave:depths", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "absolute": -80 + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_95.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_95.json new file mode 100644 index 0000000..501eac4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/depths_95.json @@ -0,0 +1,12 @@ +{ + "feature": "infinity_cave:depths", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "absolute": -96 + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/delta.json new file mode 100644 index 0000000..b4a2a5b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/delta.json @@ -0,0 +1,36 @@ +{ + "feature": "infinity_cave:frozen_caves/delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 20 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 16, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "#infinity_cave:all_but_lava" + } + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/ice_spike.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/ice_spike.json new file mode 100644 index 0000000..88e0023 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/ice_spike.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:pile_ice", + "placement": [ + { + "type": "minecraft:count", + "count": 240 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": -52 + }, + "min_inclusive": { + "above_bottom": -128 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_ceiling.json new file mode 100644 index 0000000..ef2409b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_ceiling.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:frozen_caves/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 92 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -122 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_floor.json new file mode 100644 index 0000000..0e8b085 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:frozen_caves/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches.json new file mode 100644 index 0000000..efb6816 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:packed_ice", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 33, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches_2.json new file mode 100644 index 0000000..6417f35 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches_2.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "state": { + "Name": "minecraft:light_blue_concrete", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 163, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/big_pillar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/big_pillar.json new file mode 100644 index 0000000..6529884 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/big_pillar.json @@ -0,0 +1,40 @@ +{ + "feature": "infinity_cave:generic/big_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 16 + } + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -60 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "infinity_cave:all_but_unbreakable" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ceiling.json new file mode 100644 index 0000000..b26938d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ceiling.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:generic/ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 52 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/delta.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/delta.json new file mode 100644 index 0000000..5822e6e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/delta.json @@ -0,0 +1,36 @@ +{ + "feature": "infinity_cave:generic/delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 5 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -140 + }, + "max_inclusive": { + "absolute": -56 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 16, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "#infinity_cave:all_but_lava" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/lava_path.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/lava_path.json new file mode 100644 index 0000000..bc136ac --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/lava_path.json @@ -0,0 +1,31 @@ +{ + "feature": "infinity_cave:generic/lava_path", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:count", + "count": 180 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -127 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/copper.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/copper.json new file mode 100644 index 0000000..36a832b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/copper.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/copper", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 26 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/diamond.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/diamond.json new file mode 100644 index 0000000..c5d8eb0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/diamond.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/diamond", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 6 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/emerald.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/emerald.json new file mode 100644 index 0000000..c28549b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/emerald.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/emerald", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 16 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/gold.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/gold.json new file mode 100644 index 0000000..1471eef --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/gold.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/gold", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 12 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/iron.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/iron.json new file mode 100644 index 0000000..a8d0567 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/iron.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/iron", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 16 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/lapis.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/lapis.json new file mode 100644 index 0000000..b29f75d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/lapis.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/lapis", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 15 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/redstone.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/redstone.json new file mode 100644 index 0000000..457790c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/ores/redstone.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/redstone", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 15 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/pile.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/pile.json new file mode 100644 index 0000000..9332fc5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/pile.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:generic/pile", + "placement": [ + { + "type": "minecraft:count", + "count": 60 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/pillar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/pillar.json new file mode 100644 index 0000000..a80f5b8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/pillar.json @@ -0,0 +1,51 @@ +{ + "feature": "infinity_cave:generic/pillar", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:noise_based_count", + "noise_to_count_ratio": 1, + "noise_factor": 1, + "noise_offset": 0 + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -123 + }, + "max_inclusive": { + "absolute": -64 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "infinity_cave:all_but_unbreakable" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/replace.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/replace.json new file mode 100644 index 0000000..4cfbd37 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/replace.json @@ -0,0 +1,31 @@ +{ + "feature": "infinity_cave:generic/replace", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:count", + "count": 180 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -50 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/rock.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/rock.json new file mode 100644 index 0000000..2a53470 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/rock.json @@ -0,0 +1,36 @@ +{ + "feature": "infinity_cave:generic/rock", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 1 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -140 + }, + "max_inclusive": { + "absolute": -56 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 16, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "#infinity_cave:all_but_lava" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/small_pillar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/small_pillar.json new file mode 100644 index 0000000..e02bcc1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/generic/small_pillar.json @@ -0,0 +1,40 @@ +{ + "feature": "infinity_cave:generic/small_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 36, + "min_inclusive": 10 + } + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -60 + }, + "min_inclusive": { + "above_bottom": -128 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "infinity_cave:all_but_unbreakable" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/delta.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/delta.json new file mode 100644 index 0000000..a32973b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/delta.json @@ -0,0 +1,36 @@ +{ + "feature": "infinity_cave:limestone_grotto/delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 12 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 16, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "#infinity_cave:all_but_lava" + } + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/hanging_roots.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/hanging_roots.json new file mode 100644 index 0000000..3b01eba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/hanging_roots.json @@ -0,0 +1,46 @@ +{ + "feature": "infinity_cave:limestone_grotto/hanging_roots", + "placement": [ + { + "type": "minecraft:count", + "count": 100 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_ceiling.json new file mode 100644 index 0000000..e27cb0a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_ceiling.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:limestone_grotto/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_floor.json new file mode 100644 index 0000000..c784a63 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:limestone_grotto/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches.json new file mode 100644 index 0000000..13166a0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "state": { + "Name": "minecraft:dripstone_block" + }, + "target": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + }, + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 8 + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "weight": 1, + "data": 100 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_2.json new file mode 100644 index 0000000..c8da1b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_2.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:brown_concrete", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 120, + "weight": 10 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_3.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_3.json new file mode 100644 index 0000000..6fec3cc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_3.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 4 + } + }, + "state": { + "Name": "minecraft:brown_concrete_powder", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 90, + "weight": 10 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_4.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_4.json new file mode 100644 index 0000000..7000707 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_4.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 4 + } + }, + "state": { + "Name": "minecraft:andesite", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 90, + "weight": 10 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/pebbles.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/pebbles.json new file mode 100644 index 0000000..bbdbcbc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/limestone_grotto/pebbles.json @@ -0,0 +1,46 @@ +{ + "feature": "infinity_cave:limestone_grotto/pebbles", + "placement": [ + { + "type": "minecraft:count", + "count": 155 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/basalt_pillar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/basalt_pillar.json new file mode 100644 index 0000000..ff3aacf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/basalt_pillar.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:basalt_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": 240 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": -50 + }, + "min_inclusive": { + "above_bottom": -128 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/delta.json new file mode 100644 index 0000000..2192690 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/delta.json @@ -0,0 +1,17 @@ +{ + "feature": "infinity_cave:molten_caves/delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 10 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_ceiling.json new file mode 100644 index 0000000..f9bc5ed --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_ceiling.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:molten_caves/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 188 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_floor.json new file mode 100644 index 0000000..40494c8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:molten_caves/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 35 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patches.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patches.json new file mode 100644 index 0000000..7ceff89 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:orange_concrete", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 33, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patches_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patches_2.json new file mode 100644 index 0000000..edc1a0f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/molten_caves/patches_2.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "state": { + "Name": "minecraft:magma_block", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 33, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/nothing.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/nothing.json new file mode 100644 index 0000000..898de56 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/nothing.json @@ -0,0 +1,4 @@ +{ + "feature": "infinity_cave:nothing", + "placement": [] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/spawning.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/spawning.json new file mode 100644 index 0000000..390b5e1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/spawning.json @@ -0,0 +1,52 @@ +{ + "feature": "infinity_cave:spawn_detection", + "placement": [ + { + "type": "minecraft:count", + "count": 88 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -60 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/bush.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/bush.json new file mode 100644 index 0000000..c689aa6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/bush.json @@ -0,0 +1,50 @@ +{ + "feature": "infinity_cave:sulfide_caves/bush", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 2 + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:replaceable" + }, + { + "type": "minecraft:matching_blocks", + "offset": [ + 0, + 0, + 0 + ], + "blocks": [ + "minecraft:air", + "minecraft:void_air", + "minecraft:cave_air" + ] + }, + { + "type": "minecraft:matching_blocks", + "offset": [ + 0, + -1, + 0 + ], + "blocks": [ + "minecraft:moss_block", + "minecraft:green_terracotta", + "minecraft:deepslate" + ] + } + ] + } + }, + { + "type": "minecraft:biome" + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/delta.json new file mode 100644 index 0000000..838b7bf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/delta.json @@ -0,0 +1,36 @@ +{ + "feature": "infinity_cave:sulfide_caves/delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 30 + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 16, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "#infinity_cave:all_but_lava" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling.json new file mode 100644 index 0000000..f0facb0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:sulfide_caves/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 188 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling2.json new file mode 100644 index 0000000..db69853 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling2.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:sulfide_caves/patch_ceiling2", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 32, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_floor.json new file mode 100644 index 0000000..4cc8d0c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:sulfide_caves/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 35 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches.json new file mode 100644 index 0000000..8044a95 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:moss_block", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 33, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches_2.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches_2.json new file mode 100644 index 0000000..b49969a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches_2.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "state": { + "Name": "minecraft:lime_concrete_powder", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 75, + "weight": 10 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/replace.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/replace.json new file mode 100644 index 0000000..c6a55a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/replace.json @@ -0,0 +1,31 @@ +{ + "feature": "infinity_cave:sulfide_caves/replace", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:count", + "count": 120 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/tree.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/tree.json new file mode 100644 index 0000000..61a10c3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/tree.json @@ -0,0 +1,50 @@ +{ + "feature": "infinity_cave:sulfide_caves/tree", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 1 + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:replaceable" + }, + { + "type": "minecraft:matching_blocks", + "offset": [ + 0, + 0, + 0 + ], + "blocks": [ + "minecraft:air", + "minecraft:void_air", + "minecraft:cave_air" + ] + }, + { + "type": "minecraft:matching_blocks", + "offset": [ + 0, + -1, + 0 + ], + "blocks": [ + "minecraft:moss_block", + "minecraft:green_terracotta", + "minecraft:deepslate" + ] + } + ] + } + }, + { + "type": "minecraft:biome" + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/vegetation.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/vegetation.json new file mode 100644 index 0000000..4794960 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/placed_feature/sulfide_caves/vegetation.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:sulfide_caves/vegetation", + "placement": [ + { + "type": "minecraft:count", + "count": 140 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -40 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + } + }, + { + "type": "minecraft:biome" + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/amethyst_altar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/amethyst_altar.json new file mode 100644 index 0000000..1abf0ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/amethyst_altar.json @@ -0,0 +1,9 @@ +{ + "processors": [ + { + "processor_type": "minecraft:block_rot", + "integrity": 1 + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/dinosaur.json new file mode 100644 index 0000000..1abf0ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/dinosaur.json @@ -0,0 +1,9 @@ +{ + "processors": [ + { + "processor_type": "minecraft:block_rot", + "integrity": 1 + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/knuckle_trap.json new file mode 100644 index 0000000..1abf0ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/knuckle_trap.json @@ -0,0 +1,9 @@ +{ + "processors": [ + { + "processor_type": "minecraft:block_rot", + "integrity": 1 + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/sulfide_huts.json new file mode 100644 index 0000000..1abf0ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/processor_list/sulfide_huts.json @@ -0,0 +1,9 @@ +{ + "processors": [ + { + "processor_type": "minecraft:block_rot", + "integrity": 1 + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/amethyst_altar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/amethyst_altar.json new file mode 100644 index 0000000..ce36b08 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/amethyst_altar.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:amethyst_caves" + ], + "step": "top_layer_modification", + "spawn_overrides": {}, + "terrain_adaptation": "beard_thin", + "start_pool": "infinity_cave:amethyst_altar", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/amethyst_geode.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/amethyst_geode.json new file mode 100644 index 0000000..09e467d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/amethyst_geode.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:amethyst_caves" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "bury", + "start_pool": "infinity_cave:amethyst_geode", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/deep_dark_temple.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/deep_dark_temple.json new file mode 100644 index 0000000..30a73e0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/deep_dark_temple.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "minecraft:deep_dark" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "bury", + "start_pool": "infinity_cave:deep_dark_temple", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/dinosaur.json new file mode 100644 index 0000000..be4e1e3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/dinosaur.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:deeprock_caverns" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "beard_box", + "start_pool": "infinity_cave:dinosaur", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/frozen_robot.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/frozen_robot.json new file mode 100644 index 0000000..c59f04a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/frozen_robot.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:frozen_caves" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "beard_box", + "start_pool": "infinity_cave:frozen_robot", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/knuckle_trap.json new file mode 100644 index 0000000..dfccd41 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/knuckle_trap.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:molten_caves" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "beard_thin", + "start_pool": "infinity_cave:knuckle_trap", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/limestone_houses.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/limestone_houses.json new file mode 100644 index 0000000..be9364a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/limestone_houses.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:limestone_grotto" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "beard_box", + "start_pool": "infinity_cave:limestone_houses", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/sulfide_huts.json new file mode 100644 index 0000000..7daebd5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure/sulfide_huts.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:sulfide_caves" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "beard_box", + "start_pool": "infinity_cave:sulfide_huts", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/amethyst_altar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/amethyst_altar.json new file mode 100644 index 0000000..444dea2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/amethyst_altar.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:amethyst_altar", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 1046624494, + "spacing": 20, + "separation": 7 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/amethyst_geode.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/amethyst_geode.json new file mode 100644 index 0000000..08d1084 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/amethyst_geode.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:amethyst_geode", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 94635984, + "spacing": 18, + "separation": 9 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/deep_dark_temple.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/deep_dark_temple.json new file mode 100644 index 0000000..e33753a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/deep_dark_temple.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:deep_dark_temple", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 656662444, + "spacing": 32, + "separation": 12 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/dinosaur.json new file mode 100644 index 0000000..8e9fd6f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/dinosaur.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:dinosaur", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 204662444, + "spacing": 20, + "separation": 7 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/frozen_robot.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/frozen_robot.json new file mode 100644 index 0000000..502d28b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/frozen_robot.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:frozen_robot", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 5046624494, + "spacing": 20, + "separation": 7 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/knuckle_trap.json new file mode 100644 index 0000000..5647027 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/knuckle_trap.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:knuckle_trap", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 142624494, + "spacing": 18, + "separation": 6 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/limestone_houses.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/limestone_houses.json new file mode 100644 index 0000000..29d27aa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/limestone_houses.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:limestone_houses", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 95329636, + "spacing": 19, + "separation": 7 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/sulfide_huts.json new file mode 100644 index 0000000..d180c9c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/structure_set/sulfide_huts.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:sulfide_huts", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 9592963, + "spacing": 20, + "separation": 7 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/amethyst_altar.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/amethyst_altar.json new file mode 100644 index 0000000..9ad16eb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/amethyst_altar.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:amethyst_altar", + "processors": "infinity_cave:amethyst_altar" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/amethyst_geode.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/amethyst_geode.json new file mode 100644 index 0000000..824a18b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/amethyst_geode.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:amethyst_geode", + "processors": "infinity_cave:amethyst_altar" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/deep_dark_temple.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/deep_dark_temple.json new file mode 100644 index 0000000..f7e84c9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/deep_dark_temple.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:deep_dark_temple", + "processors": "infinity_cave:dinosaur" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/dinosaur.json new file mode 100644 index 0000000..7225984 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/dinosaur.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:dinosaur", + "processors": "infinity_cave:dinosaur" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/frozen_robot.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/frozen_robot.json new file mode 100644 index 0000000..78c44ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/frozen_robot.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:frozen_robot", + "processors": "infinity_cave:amethyst_altar" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/knuckle_trap.json new file mode 100644 index 0000000..b26d92a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/knuckle_trap.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:knuckle_trap", + "processors": "infinity_cave:knuckle_trap" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/limestone_houses.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/limestone_houses.json new file mode 100644 index 0000000..10cd7ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/limestone_houses.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:limestone_houses", + "processors": "infinity_cave:sulfide_huts" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/sulfide_huts.json new file mode 100644 index 0000000..6c23d3e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/template_pool/sulfide_huts.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:sulfide_huts", + "processors": "infinity_cave:sulfide_huts" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/world_preset/normal.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/world_preset/normal.json new file mode 100644 index 0000000..c0ddea7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/infinity_cave/worldgen/world_preset/normal.json @@ -0,0 +1,36 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + }, + "settings": "infinity_cave:overworld" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/dimension/overworld.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/dimension/overworld.json new file mode 100644 index 0000000..8b73961 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/dimension/overworld.json @@ -0,0 +1,51342 @@ +{ + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "settings": "infinity_cave:overworld", + "biome_source": { + "type": "minecraft:multi_noise", + "biomes": [ + { + "biome": "infinity_cave:amethyst_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -0.274, + 2 + ], + "humidity": [ + -1, + -0.25 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "infinity_cave:limestone_grotto", + "parameters": { + "continentalness": [ + 0.25, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -2, + 2 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.5, + 0.5 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "infinity_cave:molten_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -2, + 0.175 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.3, + 2 + ], + "weirdness": [ + -1, + 0.9333 + ] + } + }, + { + "biome": "infinity_cave:sulfide_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + 0.55, + 2 + ], + "offset": 0, + "temperature": [ + -1, + 0.4 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "infinity_cave:deeprock_caverns", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -0.4, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0.05, + "temperature": [ + -0.2, + 0.8 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "infinity_cave:frozen_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + -0.18 + ], + "offset": 0.0, + "temperature": [ + -2, + -0.28 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.2 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:mirage_isles", + "parameters": { + "continentalness": [ + -1.2, + -1.05 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:warped_mesa", + "parameters": { + "continentalness": [ + -1.2, + -1.05 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.745 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.745 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.745 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.2 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "continentalness": [ + -1.2, + -1.05 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -1.2, + -0.2 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:alpha_islands_winter", + "parameters": { + "continentalness": [ + -1.2, + -1.05 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:alpha_islands", + "parameters": { + "continentalness": [ + -1.2, + -1.05 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.745 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.745 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -0.35, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.745 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.2 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 0.19 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -0.35, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 0.19 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 0.19 + ] + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.2 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.2 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.2 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.2 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:frozen_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "terralith:white_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:basalt_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "terralith:granite_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:granite_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + 0.55 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:ice_marsh", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.2, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.2, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:caldera", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:volcanic_crater", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:painted_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:ice_marsh", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 0.77 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:ice_marsh", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:orchid_swamp", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:caldera", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "terralith:yellowstone", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.56666666 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:wintry_lowlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:wintry_lowlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:steppe", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:steppe", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:arid_highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:ancient_sands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.35, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 0.77 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:lush_desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.55, + 0.77 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:lush_desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:rocky_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:desert_canyon", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + -0.35, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:glacial_chasm", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:glacial_chasm", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:yosemite_cliffs", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:moonlight_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:blooming_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:lush_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:blooming_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:lavender_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:lavender_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:white_mesa", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.26666668 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:amethyst_canyon", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:sandstone_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:glacial_chasm", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:windswept_spires", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:stony_spires", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:windswept_spires", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:fractured_savanna", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:fractured_savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:stony_spires", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:fractured_savanna", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:jungle_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:desert_spires", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:cloud_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:haze_mountain", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:jungle_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:fractured_savanna", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:haze_mountain", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:jungle_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:sandstone_valley", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.93333334 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:yellowstone", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:ice_marsh", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:orchid_swamp", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:red_oasis", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1, + -0.05 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.56666666 + ] + } + }, + { + "biome": "terralith:granite_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:ice_marsh", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 0.77 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "terralith:scarlet_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:scarlet_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "terralith:painted_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "terralith:caldera", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + -0.7666667 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + -0.4 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.93333334, + -0.05 + ] + } + }, + { + "biome": "terralith:ice_marsh", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.7666667, + -0.4 + ] + } + }, + { + "biome": "terralith:orchid_swamp", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.7666667, + -0.4 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.7666667, + -0.4 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666667, + -0.4 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + -0.4 + ] + } + }, + { + "biome": "terralith:scarlet_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "terralith:scarlet_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "terralith:volcanic_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "terralith:painted_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + -0.56666666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:frozen_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:white_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:granite_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.2, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + -0.2, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:yellowstone", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:ashen_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:volcanic_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:painted_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:snowy_maple_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:snowy_shield", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:yellowstone", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:ashen_savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:scarlet_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:volcanic_peaks", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:painted_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.56666666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.56666666, + 0.05 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:gravel_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:gravel_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:snowy_maple_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:snowy_shield", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:yellowstone", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:ashen_savanna", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + 0.4 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + 0.4 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:snowy_maple_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:snowy_shield", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:ashen_savanna", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:yellowstone", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + 0.4 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:gravel_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:gravel_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + 0.26666668 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:yosemite_lowlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:blooming_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:blooming_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.26666668, + 0.26666668 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "terralith:snowy_maple_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "terralith:snowy_shield", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "terralith:ashen_savanna", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.26666668, + -0.19 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + 0.26666668 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + 0.26666668 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.26666668, + 0.05 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.26666668, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.19, + 0.19 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.19, + 0.19 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.19, + 0.19 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:snowy_maple_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:snowy_shield", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:ashen_savanna", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.19, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.19, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:warm_river", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.5650000000000001 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:warm_river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:warm_river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:warm_river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:warm_river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:warm_river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:shield_clearing", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:valley_clearing", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:valley_clearing", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:warm_river", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:sakura_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:warm_river", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.05, + 0.19 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.05, + 0.19 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.19 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.19 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.19 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.19 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.19 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.19 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.19 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.19 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:fractured_savanna", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.55 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:wintry_lowlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:wintry_lowlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:moonlight_valley", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:steppe", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:highlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:arid_highlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:ancient_sands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.35, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 0.77 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:lush_desert", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.55, + 0.77 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:lush_desert", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:rocky_shrubland", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:desert_canyon", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + -0.35, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:yosemite_lowlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:blooming_valley", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:lush_valley", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:blooming_valley", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_canyon", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:sakura_valley", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 1 + ] + } + }, + { + "biome": "terralith:frozen_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:white_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:granite_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:granite_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.2, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + -0.2, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.155 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + 1 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:ice_marsh", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:lavender_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.56666666 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:wintry_lowlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:wintry_lowlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:moonlight_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:steppe", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:arid_highlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:ancient_sands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.35, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 0.77 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:lush_desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.55, + 0.77 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:lush_desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.33 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:rocky_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:desert_canyon", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.33, + 0.4 + ], + "humidity": [ + -0.35, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:yosemite_lowlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:blooming_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:lush_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:blooming_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_canyon", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:sakura_valley", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:windswept_spires", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:stony_spires", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:windswept_spires", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:fractured_savanna", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:fractured_savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:stony_spires", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:fractured_savanna", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:jungle_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:desert_spires", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.19 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.19 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.19 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.19 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.19 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.19 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.19 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:snowy_cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:snowy_maple_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:snowy_shield", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:siberian_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:savanna_slopes", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.26666668 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 1 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.35, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "terralith:skylands_winter", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "terralith:skylands_autumn", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "terralith:skylands_spring", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "terralith:skylands_summer", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 1 + ], + "humidity": [ + -0.35, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -0.745, + -0.455 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 1 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "terralith:snowy_maple_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "terralith:snowy_shield", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "terralith:siberian_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "terralith:savanna_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.19, + 0.26666668 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.26666668, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:ice_marsh", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:lavender_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 0.77 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.05, + 0.4 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:lavender_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 0.77 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:snowy_maple_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:snowy_shield", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:siberian_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:savanna_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:savanna_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:yosemite_cliffs", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:blooming_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:blooming_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:white_mesa", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:snowy_cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.26666668, + 0.56666666 + ] + } + }, + { + "biome": "terralith:snowy_cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:savanna_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.26666668, + 0.4 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.26666668, + 1 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:ice_marsh", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:lavender_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.2, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:ice_marsh", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "terralith:orchid_swamp", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "terralith:desert_oasis", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 0.3 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:emerald_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:emerald_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:white_mesa", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:painted_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "terralith:painted_mountains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:alpine_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:snowy_maple_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:snowy_shield", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:siberian_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:savanna_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "terralith:stony_spires", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "terralith:emerald_peaks", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:white_mesa", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.7666667 + ] + } + }, + { + "biome": "terralith:painted_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:snowy_cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.56666666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 1 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:granite_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 1 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:frozen_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:white_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + 0.3 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:emerald_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:emerald_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:white_mesa", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:painted_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:painted_mountains", + "parameters": { + "continentalness": [ + -0.11, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:snowy_cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.56666666, + 1 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:stony_spires", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.56666666, + 0.7666667 + ] + } + }, + { + "biome": "terralith:snowy_badlands", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:lavender_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.5650000000000001, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.77, + 1 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:caldera", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:siberian_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:savanna_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.4 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "terralith:caldera", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:siberian_grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "terralith:savanna_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "terralith:rocky_mountains", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.7666667, + 0.93333334 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:bryce_canyon", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666667, + 1 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:granite_cliffs", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.2, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + 1 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.2, + -0.11 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + 0.4, + 0.5650000000000001 + ], + "humidity": [ + -1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:tropical_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.375, + 0.4 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:caldera", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.585, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:siberian_grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:birch_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:savanna_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:siberian_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.03, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.78 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:snowy_cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:snowy_cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:savanna_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:savanna_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.375 + ], + "humidity": [ + -0.585, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:rocky_jungle", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:wintry_forest", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -1.0047858741932016, + -0.7273929370966008 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:gravel_desert", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:cold_shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.4 + ], + "humidity": [ + -0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.7273929370966008, + -0.45 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:temperate_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:forested_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:shield", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:alpine_highlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.585, + -0.35 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:hot_shrubland", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + -0.585 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 0.62 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.55, + 1 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:amethyst_rainforest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -1, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:moonlight_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.45, + -0.155 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.3, + 0.5650000000000001 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:sakura_grove", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + 0.5650000000000001, + 1 + ], + "offset": 0, + "temperature": [ + -0.155, + 0.2 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:brushland", + "parameters": { + "continentalness": [ + 0.62, + 1 + ], + "depth": [ + -0.005, + 0 + ], + "erosion": [ + -0.78, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.93333334, + 1 + ] + } + }, + { + "biome": "terralith:cave/deep_caves", + "parameters": { + "continentalness": [ + -1.2, + 1 + ], + "depth": [ + 0.2, + 0.4 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0.1, + "temperature": [ + -1.0047858741932016, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:dripstone_caves", + "parameters": { + "continentalness": [ + 0.8, + 1 + ], + "depth": [ + 0.23, + 0.4 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_dark", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -2, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:lush_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 0.17, + 0.4 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + 0.45, + 1 + ], + "offset": 0.05, + "temperature": [ + -1, + 0.3 + ], + "weirdness": [ + -1, + 0.5 + ] + } + }, + { + "biome": "terralith:cave/underground_jungle", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 0.225, + 0.95 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + 0.6, + 1 + ], + "offset": 0.035, + "temperature": [ + 0.3, + 1 + ], + "weirdness": [ + -0.5, + 1 + ] + } + }, + { + "biome": "terralith:cave/thermal_caves", + "parameters": { + "continentalness": [ + 0.3, + 0.725 + ], + "depth": [ + 0.225, + 0.4 + ], + "erosion": [ + -0.565, + 0.1 + ], + "humidity": [ + 0, + 0.2 + ], + "offset": 0.24, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:cave/infested_caves", + "parameters": { + "continentalness": [ + 0.05, + 0.725 + ], + "depth": [ + 0.225, + 0.4 + ], + "erosion": [ + -0.2, + 0.3 + ], + "humidity": [ + -0.36, + -0.34 + ], + "offset": 0.215, + "temperature": [ + -1, + 0.1 + ], + "weirdness": [ + -1, + 0.2 + ] + } + }, + { + "biome": "terralith:cave/fungal_caves", + "parameters": { + "continentalness": [ + 0.15, + 0.725 + ], + "depth": [ + 0.225, + 0.4 + ], + "erosion": [ + -0.6, + 0.7 + ], + "humidity": [ + -1, + -0.7 + ], + "offset": 0.065, + "temperature": [ + -0.3, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:cave/granite_caves", + "parameters": { + "continentalness": [ + 0.25, + 0.625 + ], + "depth": [ + 0.15, + 0.3 + ], + "erosion": [ + -1, + 0.25 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0.225, + "temperature": [ + 0.3, + 1 + ], + "weirdness": [ + 0, + 1 + ] + } + }, + { + "biome": "terralith:cave/andesite_caves", + "parameters": { + "continentalness": [ + 0.3, + 0.6 + ], + "depth": [ + 0.15, + 0.3 + ], + "erosion": [ + -0.25, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0.225, + "temperature": [ + -0.3, + 0.3 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:cave/diorite_caves", + "parameters": { + "continentalness": [ + 0.3, + 0.6 + ], + "depth": [ + 0.15, + 0.3 + ], + "erosion": [ + -0.5, + 0.5 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0.25, + "temperature": [ + -1, + 0.15 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:cave/tuff_caves", + "parameters": { + "continentalness": [ + 0.3, + 0.8 + ], + "depth": [ + 0.3, + 0.4 + ], + "erosion": [ + -0.2, + 0.2 + ], + "humidity": [ + -0.4, + 0.4 + ], + "offset": 0.05, + "temperature": [ + -1, + 0 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:cave/frostfire_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 0.3, + 0.4 + ], + "erosion": [ + 0.375, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0.015, + "temperature": [ + -1, + 0 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "terralith:cave/mantle_caves", + "parameters": { + "continentalness": [ + -1, + 0.9 + ], + "depth": [ + 0.2, + 0.4 + ], + "erosion": [ + -1, + 0 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0.015, + "temperature": [ + 0.1, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + } + ] + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/dimension_type/overworld.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/dimension_type/overworld.json new file mode 100644 index 0000000..6bb7e37 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/dimension_type/overworld.json @@ -0,0 +1,26 @@ +{ + "ultrawarm": false, + "natural": true, + "piglin_safe": false, + "respawn_anchor_works": false, + "bed_works": true, + "has_raids": true, + "has_skylight": true, + "has_ceiling": false, + "coordinate_scale": 1, + "ambient_light": 0, + "logical_height": 448, + "effects": "minecraft:overworld", + "infiniburn": "#minecraft:infiniburn_overworld", + "min_y": -128, + "height": 448, + "monster_spawn_light_level": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 7 + } + }, + "monster_spawn_block_light_limit": 0 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/blocks/base_stone_overworld.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/blocks/base_stone_overworld.json new file mode 100644 index 0000000..dfa496a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/blocks/base_stone_overworld.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:tuff", + "minecraft:deepslate" + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/damage_type/bypasses_cooldown.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/damage_type/bypasses_cooldown.json new file mode 100644 index 0000000..5cf63ca --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/damage_type/bypasses_cooldown.json @@ -0,0 +1,6 @@ +{ + "values": [ + "infinity_cave:bypass", + "infinity_cave:magic_bypass" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/functions/load.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/functions/load.json new file mode 100644 index 0000000..dacbf7d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/functions/load.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "infinity_cave:init" + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/worldgen/biome/all.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/worldgen/biome/all.json new file mode 100644 index 0000000..10edf38 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/worldgen/biome/all.json @@ -0,0 +1,9 @@ +{ + "values": [ + "infinity_cave:molten_caves", + "infinity_cave:sulfide_caves", + "infinity_cave:amethyst_caves", + "infinity_cave:frozen_caves", + "infinity_cave:deeprock_caverns" + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json new file mode 100644 index 0000000..e96fa6a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json @@ -0,0 +1,8 @@ +{ + "replace": true, + "values": [ + "stronghold", + "bastion_remnant", + "end_city" + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/biome/deep_dark.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/biome/deep_dark.json new file mode 100644 index 0000000..6215a43 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/biome/deep_dark.json @@ -0,0 +1,120 @@ +{ + "carvers": { + "air": [ + ] + }, + "downfall": 0.4, + "effects": { + "fog_color": 12638463, + "grass_color": 1457262, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.deep_dark" + }, + "sky_color": 7907327, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning" + ], + [], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [ + ], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/copper", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "minecraft:sculk_vein", + "minecraft:sculk_patch_deep_dark", + "infinity_cave:deep_dark/patch_floor" + ], + [], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "temperature": 0.8 +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/biome/lush_caves.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/biome/lush_caves.json new file mode 100644 index 0000000..666facd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/biome/lush_caves.json @@ -0,0 +1,190 @@ +{ + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "downfall": 0.5, + "effects": { + "fog_color": 12638463, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.lush_caves" + }, + "sky_color": 8103167, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127" + ], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_clay", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:lush_caves_ceiling_vegetation", + "minecraft:cave_vines", + "minecraft:lush_caves_clay", + "minecraft:lush_caves_vegetation", + "minecraft:rooted_azalea_tree", + "minecraft:spore_blossom", + "minecraft:classic_vines_cave_feature" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [ + { + "type": "minecraft:axolotl", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/configured_carver/cave.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/configured_carver/cave.json new file mode 100644 index 0000000..3d251ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/configured_carver/cave.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:crimson_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": -0.4, + "min_inclusive": -1 + } + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.4, + "min_inclusive": 0.7 + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.15, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.3, + "min_inclusive": 0.8 + } + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 180 + }, + "min_inclusive": { + "above_bottom": 167 + } + }, + "yScale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.4, + "min_inclusive": 0.1 + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/configured_carver/cave_extra_underground.json b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/configured_carver/cave_extra_underground.json new file mode 100644 index 0000000..be117fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/data/minecraft/worldgen/configured_carver/cave_extra_underground.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:oak_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": -0.4, + "min_inclusive": -1 + } + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.4, + "min_inclusive": 0.7 + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.07, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.3, + "min_inclusive": 0.8 + } + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 87 + }, + "min_inclusive": { + "above_bottom": 80 + } + }, + "yScale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.1, + "min_inclusive": 0 + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/pack.mcmeta b/src/main/resources/resourcepacks/infinity-cave-terralith/pack.mcmeta new file mode 100644 index 0000000..4224844 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave-terralith/pack.mcmeta @@ -0,0 +1,14 @@ +{ + "pack": { + "pack_format": 15, + "supported_formats": { + "min_inclusive": 15, + "max_inclusive": 26 + }, + "description": { + "text": "Infinity Cave 0.4\nby Frozytime", + "color": "gold" + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave-terralith/pack.png b/src/main/resources/resourcepacks/infinity-cave-terralith/pack.png new file mode 100644 index 0000000..9d04fd7 Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave-terralith/pack.png differ diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/1.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/1.json new file mode 100644 index 0000000..e0d38c7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/1.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:1}" + }, + "title": "Enchantmentulet?", + "description": [ + { + "text": "Find your first Enchantlet!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:enchant}" + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/2.json new file mode 100644 index 0000000..42a7a8f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/2.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:2}" + }, + "title": "I Forsee a Great Enchantment...", + "description": [ + { + "text": "A GREAT ENCHANTMENT WITH ME!\n\nFind your first Tier II Enchantlet!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/1", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ec:2}" + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/3.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/3.json new file mode 100644 index 0000000..ead5928 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/3.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:3}" + }, + "title": "Tier III SUB TO GRU!", + "description": [ + { + "text": "Find your first Tier III Enchantlet!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/2", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ec:3}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/4.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/4.json new file mode 100644 index 0000000..ed64c28 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/4.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:4}" + }, + "title": "TIER 4 SUBS EXIST?!", + "description": [ + { + "text": "Find your first Tier IV Enchantlet!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/3", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ec:4}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/5.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/5.json new file mode 100644 index 0000000..9af4c7c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/5.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:5}" + }, + "title": "V = X but also = VII?", + "description": [ + { + "text": "If VII = V and V also = X then what if VIII and IX = V. Oh, it's just the amount of sharpness you can get\n\nFind your first Tier V Enchantlet!" + } + ], + "frame": "goal", + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/4", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ec:5}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/all_in_one.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/all_in_one.json new file mode 100644 index 0000000..a5ed7f2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/all_in_one.json @@ -0,0 +1,40 @@ +{ + "display": { + "icon": { + "item": "minecraft:iron_sword" + }, + "title": "Three is Better than One!", + "description": [ + { + "text": "Obtain all three damage enchantments combined into one sword" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/2", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "infinity_cave:sharpness", + "enchantments": [ + { + "enchantment": "minecraft:smite" + }, + { + "enchantment": "minecraft:bane_of_arthropods" + }, + { + "enchantment": "minecraft:sharpness" + } + ] + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/efficiency_6.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/efficiency_6.json new file mode 100644 index 0000000..3e62a57 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/efficiency_6.json @@ -0,0 +1,37 @@ +{ + "display": { + "icon": { + "item": "minecraft:diamond_pickaxe" + }, + "title": "Mine Treasure Efficiency", + "description": [ + { + "text": "Obtain Efficiency VI+" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/4", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "infinity_cave:tools", + "enchantments": [ + { + "enchantment": "minecraft:efficiency", + "levels": { + "min": 6 + } + } + ] + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/power_6.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/power_6.json new file mode 100644 index 0000000..198c470 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/power_6.json @@ -0,0 +1,39 @@ +{ + "display": { + "icon": { + "item": "minecraft:bow" + }, + "title": "Powerhouse!", + "description": [ + { + "text": "Obtain Power VI+" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/4", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:bow" + ], + "enchantments": [ + { + "enchantment": "minecraft:power", + "levels": { + "min": 6 + } + } + ] + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/sharpness_10.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/sharpness_10.json new file mode 100644 index 0000000..e0743e1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/sharpness_10.json @@ -0,0 +1,38 @@ +{ + "display": { + "icon": { + "item": "minecraft:netherite_sword" + }, + "title": "The Sharpest Lives", + "description": [ + { + "text": "Obtain sharpness X" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/5", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "infinity_cave:sharpness", + "enchantments": [ + { + "enchantment": "minecraft:sharpness", + "levels": { + "min": 10 + } + } + ] + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/sharpness_6.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/sharpness_6.json new file mode 100644 index 0000000..c33904f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/enchantlet/sharpness_6.json @@ -0,0 +1,38 @@ +{ + "display": { + "icon": { + "item": "minecraft:diamond_sword" + }, + "title": "WOAH BE CAREFUL, THAT'S REALLY SHARP!", + "description": [ + { + "text": "Obtain sharpness VI+" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/enchantlet/4", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "infinity_cave:sharpness", + "enchantments": [ + { + "enchantment": "minecraft:sharpness", + "levels": { + "min": 6 + } + } + ] + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/acid_shield.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/acid_shield.json new file mode 100644 index 0000000..243a1df --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/acid_shield.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:shield", + "nbt": "{CustomModelData:2}" + }, + "title": "How Do You Own Disoder?", + "description": [ + { + "text": "Obtain the Acid Shield" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/sulfide_huts", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:acid_shield}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/amethyst_blade.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/amethyst_blade.json new file mode 100644 index 0000000..173ffc2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/amethyst_blade.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:netherite_sword", + "nbt": "{CustomModelData:1}" + }, + "title": "Chime Chime DIE DIE!", + "description": [ + { + "text": "Obtain the Amethyst Blade" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/amethyst_geode", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:netherite_sword" + ], + "nbt": "{ic:amethyst_blade}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/bastion_piercer.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/bastion_piercer.json new file mode 100644 index 0000000..8103df1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/bastion_piercer.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:netherite_hoe", + "nbt": "{CustomModelData:1}" + }, + "title": "Pokey Pokey!", + "description": [ + { + "text": "Obtain the Bastion Piercer" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/sulfide_huts", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:netherite_hoe" + ], + "nbt": "{ic:bastion_piercer}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/fireball.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/fireball.json new file mode 100644 index 0000000..69012ec --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/fireball.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:6}" + }, + "title": "Fire With a Ball", + "description": [ + { + "text": "Obtain a Fireball" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/knuckle_trap", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:fireball}" + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/ice_spark.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/ice_spark.json new file mode 100644 index 0000000..489dd11 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/ice_spark.json @@ -0,0 +1,34 @@ +{ + "display": { + "icon": { + "item": "minecraft:ender_eye", + "nbt": "{CustomModelData:7}" + }, + "title": "You're on Thin Ice", + "description": [ + { + "text": "Obtain an Ice Spark" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/frozen_robot", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:ice_spark}" + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/icicle_crossbow.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/icicle_crossbow.json new file mode 100644 index 0000000..a263b12 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/icicle_crossbow.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:crossbow", + "nbt": "{CustomModelData:1}" + }, + "title": "The Battlebox Experience", + "description": [ + { + "text": "Obtain the Icicle Crossbow" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/frozen_robot", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:crossbow" + ], + "nbt": "{ic:icicle_crossbow}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/molten_hammer.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/molten_hammer.json new file mode 100644 index 0000000..a2f0c01 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/molten_hammer.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:brush", + "nbt": "{CustomModelData:1}" + }, + "title": "Stop, Hammertime!", + "description": [ + { + "text": "Obtain the Molten Hammer" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/knuckle_trap", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:brush" + ], + "nbt": "{ic:molten_hammer}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/sonic_bow.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/sonic_bow.json new file mode 100644 index 0000000..058aa66 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/sonic_bow.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:bow", + "nbt": "{CustomModelData:1}" + }, + "title": "Skelington, May I Have a Word?", + "description": [ + { + "text": "Obtain the Supersonic Bow" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/deep_temple", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:bow" + ], + "nbt": "{ic:sonic_bow}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/steel_battleaxe.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/steel_battleaxe.json new file mode 100644 index 0000000..8108b24 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/steel_battleaxe.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:netherite_axe", + "nbt": "{CustomModelData:1}" + }, + "title": "Erradicate All Shield Users", + "description": [ + { + "text": "Obtain the Steel Battleaxe" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/dinosaur", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:netherite_axe" + ], + "nbt": "{ic:steel_battleaxe}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/thunder_harpoon.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/thunder_harpoon.json new file mode 100644 index 0000000..d632603 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/items/thunder_harpoon.json @@ -0,0 +1,33 @@ +{ + "display": { + "icon": { + "item": "minecraft:shield", + "nbt": "{CustomModelData:1}" + }, + "title": "A Drowned Once Wished for This", + "description": [ + { + "text": "Obtain the Thunder Harpoon" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/structure/limestone_houses", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:torpedo_harpoon}" + } + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/root.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/root.json new file mode 100644 index 0000000..34a8d21 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/root.json @@ -0,0 +1,42 @@ +{ + "display": { + "icon": { + "item": "minecraft:player_head", + "nbt": "{SkullOwner:{Id:[I;36370817,-985381286,-1212199616,-2014244506],Properties:{textures:[{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2U4YWRhOWI3MTNmZGVlZDE0MmE4NmEwNjExYTM1OGRlYjRhNzdkZGM1NGQ0NWUyYjY4ZjI1NzdkZmFiYWI0In19fQ==\"}]}}}" + }, + "title": { + "text": "Infinity Cave", + "color": "white", + "bold": false + }, + "description": { + "text": "Welcome to Infinity Cave, check the guidebook for more information." + }, + "background": "minecraft:textures/block/black_stained_glass.png", + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "criteria": { + "location": { + "trigger": "minecraft:location", + "conditions": { + "player": [ + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + } + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:display/start" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/amethyst_altar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/amethyst_altar.json new file mode 100644 index 0000000..83333f9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/amethyst_altar.json @@ -0,0 +1,49 @@ +{ + "display": { + "icon": { + "item": "minecraft:end_crystal" + }, + "title": "ANIMATIONS! WOOO!", + "description": [ + { + "text": "Activate the Amethyst Altar!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_interacted_with_entity", + "conditions": { + "player": [], + "entity": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.altar": { + "min": 1, + "max": 85 + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:interaction", + "nbt": "{Tags:[\"ic.amethyst_altar\"]}" + } + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/amethyst_geode.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/amethyst_geode.json new file mode 100644 index 0000000..cc63abf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/amethyst_geode.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:amethyst_block" + }, + "title": "What type of Geode is this?", + "description": [ + { + "text": "Find loot in a Giant Amethyst Geode structure!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/amethyst_geode" + } + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/deep_temple.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/deep_temple.json new file mode 100644 index 0000000..3688abf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/deep_temple.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:end_stone_bricks" + }, + "title": "The Lore Structure", + "description": [ + { + "text": "Find loot in the Deep Temple structure!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/deep_dark_temple" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/dinosaur.json new file mode 100644 index 0000000..766debe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/dinosaur.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:bone_block" + }, + "title": "What Kind of Creature is This?", + "description": [ + { + "text": "Find loot in the Dinosaur structure!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/dinosaur" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/frozen_robot.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/frozen_robot.json new file mode 100644 index 0000000..02471c2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/frozen_robot.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:iron_block" + }, + "title": "What Kind of Robot is This?", + "description": [ + { + "text": "Find loot in the Frozen Robot structure!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/frozen_robot" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/knuckle_trap.json new file mode 100644 index 0000000..0386dcb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/knuckle_trap.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:magma_block" + }, + "title": "Temptations... So Tempting...", + "description": [ + { + "text": "Don't mine the Ancient Debris, check underneath it first.\n\nFind loot in the Knuckle structure!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/knuckle_trap" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/limestone_houses.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/limestone_houses.json new file mode 100644 index 0000000..1837942 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/limestone_houses.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:bone_block" + }, + "title": "Don't Trip!", + "description": [ + { + "text": "Find loot in the Limestone Houses!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/limestone_houses" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/sulfide_huts.json new file mode 100644 index 0000000..a95ad53 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/display/structure/sulfide_huts.json @@ -0,0 +1,25 @@ +{ + "display": { + "icon": { + "item": "minecraft:bone_block" + }, + "title": "Ancient Pharmaceuticals", + "description": [ + { + "text": "Find loot in the Sulfide Huts!" + } + ], + "show_toast": true, + "announce_to_chat": true, + "hidden": false + }, + "parent": "infinity_cave:display/root", + "criteria": { + "requirement": { + "trigger": "minecraft:player_generates_container_loot", + "conditions": { + "loot_table": "infinity_cave:structures/sulfide_huts" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/load.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/load.json new file mode 100644 index 0000000..4758735 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/load.json @@ -0,0 +1,21 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:tick", + "conditions": { + "player": { + "type_specific": { + "type": "player", + "advancements": { + "infinity_cave:mechanics/weapons/sonic_bow/tick": true, + "infinity_cave:mechanics/weapons/torpedo_harpoon/tick": true + } + } + } + } + } + }, + "rewards": { + "function": "infinity_cave:load" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/altar/spawn.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/altar/spawn.json new file mode 100644 index 0000000..829b314 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/altar/spawn.json @@ -0,0 +1,36 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_interacted_with_entity", + "conditions": { + "player": [], + "entity": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.altar": { + "min": 1, + "max": 85 + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:interaction", + "nbt": "{Tags:[\"ic.amethyst_altar\"]}" + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/altar/spawn" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/altar/tick.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/altar/tick.json new file mode 100644 index 0000000..c2a6f2f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/altar/tick.json @@ -0,0 +1,11 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:tick" + } + }, + "rewards": { + "function": "infinity_cave:mechanics/altar/tick" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/darkness_cleanse.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/darkness_cleanse.json new file mode 100644 index 0000000..b74b19f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/darkness_cleanse.json @@ -0,0 +1,19 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:effects_changed", + "conditions": { + "player": { + "nbt": "{Inventory:[{tag:{ic:darkness_cleanse}}]}" + }, + "effects": { + "minecraft:darkness": {} + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/darkness_cleanse" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/enter_toxic_water.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/enter_toxic_water.json new file mode 100644 index 0000000..7b5a62a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/enter_toxic_water.json @@ -0,0 +1,34 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:enter_block", + "conditions": { + "player": [ + { + "condition": "minecraft:location_check", + "predicate": { + "biome": "infinity_cave:sulfide_caves" + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "effects": { + "minecraft:poison": {} + } + } + } + } + ], + "block": "minecraft:water" + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/toxic_water" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/food/burnt_meat.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/food/burnt_meat.json new file mode 100644 index 0000000..09ea6be --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/food/burnt_meat.json @@ -0,0 +1,20 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:consume_item", + "conditions": { + "player": { + "effects": { + "minecraft:fire_resistance": {} + } + }, + "item": { + "nbt": "{ic:burnt_meat}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/food/burnt_meat" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/food/enchanted_chorus_fruit.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/food/enchanted_chorus_fruit.json new file mode 100644 index 0000000..99bf18d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/food/enchanted_chorus_fruit.json @@ -0,0 +1,15 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:consume_item", + "conditions": { + "item": { + "nbt": "{ic:enchanted_chorus_fruit}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/food/enchanted_chorus_fruit" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/food/piglin_meat.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/food/piglin_meat.json new file mode 100644 index 0000000..ce7dbd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/food/piglin_meat.json @@ -0,0 +1,16 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:consume_item", + "conditions": { + "item": { + "nbt": "{ic:piglin_meat}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/food/piglin_meat" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/magic_spyglass.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/magic_spyglass.json new file mode 100644 index 0000000..b05c53d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/magic_spyglass.json @@ -0,0 +1,24 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:using_item", + "conditions": { + "player": { + "type_specific": { + "type": "player", + "looking_at": { + "type": "#infinity_cave:all_living" + } + } + }, + "item": { + "nbt": "{ic:magic_spyglass}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/magic_spyglass/start" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/_rc_check.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/_rc_check.json new file mode 100644 index 0000000..480a658 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/_rc_check.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/_rc_check" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_enchant.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_enchant.json new file mode 100644 index 0000000..cfbb4a9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_enchant.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:enchant,ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:enchant,ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/rc_enchant" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_fireball.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_fireball.json new file mode 100644 index 0000000..0e7711b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_fireball.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:fireball,ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:fireball,ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/rc_fireball" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_ice_spark.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_ice_spark.json new file mode 100644 index 0000000..7978b3a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_ice_spark.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:ice_spark,ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:ice_spark,ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/rc_ice_spark" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_magic_repair.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_magic_repair.json new file mode 100644 index 0000000..cb99de8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_magic_repair.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:magic_repair,ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:magic_repair,ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/rc_magic_repair" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_teleport.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_teleport.json new file mode 100644 index 0000000..afa4aed --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/rc/rc_teleport.json @@ -0,0 +1,47 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:used_ender_eye", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:teleport,ic:rc}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "nbt": "{rc:teleport,ic:rc}" + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/rc/rc_teleport" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/safety_banner.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/safety_banner.json new file mode 100644 index 0000000..16ba78f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/safety_banner.json @@ -0,0 +1,24 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:item_used_on_block", + "conditions": { + "location": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": [ + "minecraft:white_banner" + ], + "nbt": "{ic:safety_banner}" + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/safety_banner" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weakness_cleanse.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weakness_cleanse.json new file mode 100644 index 0000000..1ac6d28 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weakness_cleanse.json @@ -0,0 +1,19 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:effects_changed", + "conditions": { + "player": { + "nbt": "{Inventory:[{tag:{ic:weakness_cleanse}}]}" + }, + "effects": { + "minecraft:weakness": {} + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weakness_cleanse" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/acid_shield/block.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/acid_shield/block.json new file mode 100644 index 0000000..0115469 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/acid_shield/block.json @@ -0,0 +1,54 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:entity_hurt_player", + "conditions": { + "player": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + }, + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:acid_shield}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:acid_shield}" + } + } + } + } + ] + } + ], + "damage": { + "blocked": true + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/acid_shield/start_ray" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/acid_shield/durability.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/acid_shield/durability.json new file mode 100644 index 0000000..ae929af --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/acid_shield/durability.json @@ -0,0 +1,50 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:entity_hurt_player", + "conditions": { + "player": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:acid_shield}" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:acid_shield}" + } + } + } + } + ] + } + ], + "damage": { + "blocked": true + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/acid_shield/durability" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/acid_shield/poison_immune.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/acid_shield/poison_immune.json new file mode 100644 index 0000000..914a174 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/acid_shield/poison_immune.json @@ -0,0 +1,23 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:effects_changed", + "conditions": { + "player": { + "equipment": { + "offhand": { + "nbt": "{ic:acid_shield}" + } + } + }, + "effects": { + "minecraft:poison": {} + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/acid_shield/poison_immune" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/amethyst_blade/half.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/amethyst_blade/half.json new file mode 100644 index 0000000..bb6c6b4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/amethyst_blade/half.json @@ -0,0 +1,43 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.amethyst_blade": { + "min": 11 + } + } + } + ], + "damage": { + "type": { + "tags": [ + { + "id": "infinity_cave:player_attack", + "expected": true + } + ], + "source_entity": { + "equipment": { + "mainhand": { + "nbt": "{ic:amethyst_blade}" + } + } + } + } + }, + "entity": { + "type": "#infinity_cave:all_living" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/amethyst_blade/hit_match" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/bastion_piercer/distance.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/bastion_piercer/distance.json new file mode 100644 index 0000000..01db5dd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/bastion_piercer/distance.json @@ -0,0 +1,53 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.bastion_piercer": { + "min": 11 + } + } + } + ], + "damage": { + "type": { + "tags": [ + { + "id": "infinity_cave:player_attack", + "expected": true + } + ], + "source_entity": { + "equipment": { + "mainhand": { + "nbt": "{ic:bastion_piercer}" + } + } + } + } + }, + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "distance": { + "absolute": { + "min": 2.75 + } + } + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/bastion_piercer/hit_match" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/icicle_crossbow/shot.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/icicle_crossbow/shot.json new file mode 100644 index 0000000..6f84d10 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/icicle_crossbow/shot.json @@ -0,0 +1,16 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:shot_crossbow", + "conditions": { + "item": { + "nbt": "{ic:icicle_crossbow}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/icicle_crossbow/fire" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/hit.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/hit.json new file mode 100644 index 0000000..0b894d2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/hit.json @@ -0,0 +1,25 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:molten_hammer}" + } + } + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/molten_hammer/hit" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/use.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/use.json new file mode 100644 index 0000000..eddb025 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/molten_hammer/use.json @@ -0,0 +1,29 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:using_item", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.molten_hammer": { + "min": 5 + } + } + } + ], + "item": { + "items": [ + "minecraft:brush" + ], + "nbt": "{ic:molten_hammer}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/molten_hammer/start_ray" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/charge.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/charge.json new file mode 100644 index 0000000..577aa68 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/charge.json @@ -0,0 +1,20 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:using_item", + "conditions": { + "player": [ + ], + "item": { + "items": [ + "minecraft:bow" + ], + "nbt": "{ic:sonic_bow}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/sonic_bow/charge" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/tick.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/tick.json new file mode 100644 index 0000000..033a6c0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/sonic_bow/tick.json @@ -0,0 +1,11 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:tick" + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/sonic_bow/tick" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/steel_battleaxe/shield.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/steel_battleaxe/shield.json new file mode 100644 index 0000000..b2d348f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/steel_battleaxe/shield.json @@ -0,0 +1,73 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_scores", + "entity": "this", + "scores": { + "ic.steel_battleaxe": { + "min": 11 + } + } + } + ], + "damage": { + "type": { + "tags": [ + { + "id": "infinity_cave:player_attack", + "expected": true + } + ], + "source_entity": { + "equipment": { + "mainhand": { + "nbt": "{ic:steel_battleaxe}" + } + } + } + } + }, + "entity": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/steel_battleaxe/hit_match" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/charge.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/charge.json new file mode 100644 index 0000000..38da2e6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/charge.json @@ -0,0 +1,20 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:using_item", + "conditions": { + "player": [ + ], + "item": { + "items": [ + "minecraft:shield" + ], + "nbt": "{ic:torpedo_harpoon}" + } + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/torpedo_harpoon/charge" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/hit.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/hit.json new file mode 100644 index 0000000..f0f858a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/hit.json @@ -0,0 +1,25 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:torpedo_harpoon}" + } + } + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/torpedo_harpoon/durability" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/tick.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/tick.json new file mode 100644 index 0000000..be386d8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/mechanics/weapons/torpedo_harpoon/tick.json @@ -0,0 +1,11 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:tick" + } + }, + "rewards": { + "function": "infinity_cave:mechanics/weapons/torpedo_harpoon/tick" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/boots.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/boots.json new file mode 100644 index 0000000..b712ba9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/boots.json @@ -0,0 +1,56 @@ +{ + "criteria": { + "empty": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "feet": { + "items": [ + "minecraft:air" + ] + } + } + } + } + ] + } + }, + "feet": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "feet": { + "tag": "infinity_cave:feet" + } + } + } + } + ], + "items": [ + { + "tag": "infinity_cave:feet" + } + ] + } + } + }, + "requirements": [ + [ + "empty", + "feet" + ] + ], + "rewards": { + "function": "infinity_cave:technical/armor/feet_check" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/chestplate.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/chestplate.json new file mode 100644 index 0000000..d0a098d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/chestplate.json @@ -0,0 +1,56 @@ +{ + "criteria": { + "empty": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:air" + ] + } + } + } + } + ] + } + }, + "chest": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "tag": "infinity_cave:chest" + } + } + } + } + ], + "items": [ + { + "tag": "infinity_cave:chest" + } + ] + } + } + }, + "requirements": [ + [ + "empty", + "chest" + ] + ], + "rewards": { + "function": "infinity_cave:technical/armor/chest_check" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/helmet.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/helmet.json new file mode 100644 index 0000000..5efe1b0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/helmet.json @@ -0,0 +1,56 @@ +{ + "criteria": { + "empty": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "head": { + "items": [ + "minecraft:air" + ] + } + } + } + } + ] + } + }, + "head": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "head": { + "tag": "infinity_cave:head" + } + } + } + } + ], + "items": [ + { + "tag": "infinity_cave:head" + } + ] + } + } + }, + "requirements": [ + [ + "empty", + "head" + ] + ], + "rewards": { + "function": "infinity_cave:technical/armor/head_check" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/leggings.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/leggings.json new file mode 100644 index 0000000..cd6afe4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/armor/leggings.json @@ -0,0 +1,56 @@ +{ + "criteria": { + "empty": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "legs": { + "items": [ + "minecraft:air" + ] + } + } + } + } + ] + } + }, + "legs": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "legs": { + "tag": "infinity_cave:legs" + } + } + } + } + ], + "items": [ + { + "tag": "infinity_cave:legs" + } + ] + } + } + }, + "requirements": [ + [ + "empty", + "legs" + ] + ], + "rewards": { + "function": "infinity_cave:technical/armor/legs_check" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/hit_match/entity_hurt_player.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/hit_match/entity_hurt_player.json new file mode 100644 index 0000000..06c99d4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/hit_match/entity_hurt_player.json @@ -0,0 +1,15 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:entity_hurt_player", + "conditions": { + "damage": { + "source_entity": {} + } + } + } + }, + "rewards": { + "function": "infinity_cave:technical/hit_match/entity_hurt_player" + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/hit_match/player_hurt_entity.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/hit_match/player_hurt_entity.json new file mode 100644 index 0000000..b719d4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/hit_match/player_hurt_entity.json @@ -0,0 +1 @@ +{"criteria":{"bit0":{"trigger":"minecraft:player_hurt_entity","conditions":{"damage":{"source_entity":{},"type":{"tags":[{"id":"minecraft:is_fire","expected":false},{"id":"minecraft:bypasses_armor","expected":false},{"id":"minecraft:is_lightning","expected":false},{"id":"minecraft:is_explosion","expected":false}]}},"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit0"},"range":1}]}},"nbit0":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit0"},"range":0}]}},"bit1":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit1"},"range":1}]}},"nbit1":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit1"},"range":0}]}},"bit2":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit2"},"range":1}]}},"nbit2":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit2"},"range":0}]}},"bit3":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit3"},"range":1}]}},"nbit3":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit3"},"range":0}]}},"bit4":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit4"},"range":1}]}},"nbit4":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit4"},"range":0}]}},"bit5":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit5"},"range":1}]}},"nbit5":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit5"},"range":0}]}},"bit6":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit6"},"range":1}]}},"nbit6":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit6"},"range":0}]}},"bit7":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit7"},"range":1}]}},"nbit7":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit7"},"range":0}]}},"bit8":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit8"},"range":1}]}},"nbit8":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit8"},"range":0}]}},"bit9":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit9"},"range":1}]}},"nbit9":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit9"},"range":0}]}},"bit10":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit10"},"range":1}]}},"nbit10":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit10"},"range":0}]}},"bit11":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit11"},"range":1}]}},"nbit11":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit11"},"range":0}]}},"bit12":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit12"},"range":1}]}},"nbit12":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit12"},"range":0}]}},"bit13":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit13"},"range":1}]}},"nbit13":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit13"},"range":0}]}},"bit14":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit14"},"range":1}]}},"nbit14":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit14"},"range":0}]}},"bit15":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit15"},"range":1}]}},"nbit15":{"trigger":"minecraft:player_hurt_entity","conditions":{"entity":[{"condition":"minecraft:value_check","value":{"type":"minecraft:score","target":"this","score":"ic.bit15"},"range":0}]}}},"requirements":[["bit0","nbit0"],["bit1","nbit1"],["bit2","nbit2"],["bit3","nbit3"],["bit4","nbit4"],["bit5","nbit5"],["bit6","nbit6"],["bit7","nbit7"],["bit8","nbit8"],["bit9","nbit9"],["bit10","nbit10"],["bit11","nbit11"],["bit12","nbit12"],["bit13","nbit13"],["bit14","nbit14"],["bit15","nbit15"]],"rewards":{"function":"infinity_cave:technical/hit_match/player_hurt_entity"}} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/hit_projectile.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/hit_projectile.json new file mode 100644 index 0000000..e32fd7c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/advancements/technical/hit_projectile.json @@ -0,0 +1,32 @@ +{ + "criteria": { + "requirement": { + "trigger": "minecraft:player_hurt_entity", + "conditions": { + "damage": { + "type": { + "tags": [ + { + "id": "minecraft:is_projectile", + "expected": true + } + ] + } + }, + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "team": "ic.mob_team" + } + } + ] + } + } + }, + "rewards": { + "function": "infinity_cave:technical/hit_projectile" + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/damage_type/bypass.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/damage_type/bypass.json new file mode 100644 index 0000000..5cb6f9b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/damage_type/bypass.json @@ -0,0 +1,6 @@ +{ + "message_id": "generic", + "exhaustion": 0, + "scaling": "when_caused_by_living_non_player", + "death_message_type": "default" + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/damage_type/magic_bypass.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/damage_type/magic_bypass.json new file mode 100644 index 0000000..0906335 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/damage_type/magic_bypass.json @@ -0,0 +1,6 @@ +{ + "message_id": "magic", + "exhaustion": 0, + "scaling": "when_caused_by_living_non_player", + "death_message_type": "default" + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/display/start.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/display/start.mcfunction new file mode 100644 index 0000000..531aabb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/display/start.mcfunction @@ -0,0 +1,3 @@ +playsound minecraft:entity.ghast.scream hostile @s ~ ~ ~ 1 1 1 + +summon item ~ ~1 ~ {Item:{id:"minecraft:written_book",Count:1b,tag:{title:"Infinity Cave Guide",author:"Frozytime",generation:0,pages:['[{"text":""},{"text":"Infinity Cave Guide\\n","color":"black","bold":true},{"text":"Click on the chapter to switch page\\n\\n"},{"text":"1. Information\\n","clickEvent":{"action":"change_page","value":"2"}},{"text":"2. Not Available\\n","clickEvent":{"action":"change_page","value":"4"}},{"text":"3. Not Available\\n","clickEvent":{"action":"change_page","value":"14"}},{"text":"4. Cave Biomes\\n","clickEvent":{"action":"change_page","value":"23"}},{"text":"5. Not Available\\n","clickEvent":{"action":"change_page","value":"27"}},{"text":"6. Structures\\n","clickEvent":{"action":"change_page","value":"30"}},{"text":"7. Enchantlets\\n","clickEvent":{"action":"change_page","value":"33"}},{"text":"8. Custom Items\\n","clickEvent":{"action":"change_page","value":"35"}},{"text":"9. Not Available\\n","clickEvent":{"action":"change_page","value":"38"}},{"text":"10. Not Available","clickEvent":{"action":"change_page","value":"39"}}]','[{"text":""},{"text":"Information:\\n","bold":true},{"text":"Infinity Cave adds a seemingly infinite cave system beneath the bedrock layer increasing the bedrock layer from -64 to -128. With this comes many new challenges and an overall different way of experiencing PvE. Either as a group or by yourself."}]','{"text":"Be warned, Infinity Cave is quite difficult, it is recommended for beginners to play on easy mode. You can configure all of this by typing /function infinity_cave:settings which can alter several aspects to whatever you\'d like. Though this is still in early beta."}','[{"text":""},{"text":"Mobs\\n","bold":true},{"text":"Infinity Caves do not have any ordinary mob spawns. Instead mobs are spawned when triggering an area. This means it is possible to clear an area of mob-spawning and build a base for example. Mobs also spawn with armor, no matter which mob, even Spiders."}]','{"text":"Mob information:\\n\\nEvery mob: May jump if the player decides to pillar up. \\n\\nWhen shot there is a 20% chance a mob becomes enranged, receiving Strength and Speed for 10 seconds and clears lava/cobwebs around itself. "}','{"text":"Zombie: Normal health, normal speed, normal attack damage and may spawn as a baby with increased speed.\\n\\nSkeleton: Normal health, normal speed, normal attack damage and may spawn as a spider jokey."}','{"text":"Spider: Low health, higher speed, normal attack, has increased attack knockback and has a 25% chance of webbing the player upon hit. May also disable shields.\\n\\nPillager: Normal health, normal speed, normal attack damage. May have different projectiles."}','{"text":"Slime: High health, low speed, high attack damage and every now and then, it may leap at the player. Destroys blocks around itself when it spawns.\\n\\nWither Skeleton: Normal health, normal speed, high attack damage and withers the player."}','{"text":"Vindicator: Normal health, normal speed, high attack damage and may disable shields.\\n\\nIron Golem: Extreme health, normal speed, normal attack damage and reduced knockback resistance. Destroys block around itself when it spawns."}','{"text":"Enderman: High health, normal speed, normal attack damage and is instantly aggressive. Be careful.\\n\\nZombified Piglin: Normal health, normal speed, high attack damage, always has Fire Aspect and may spawn as a baby."}','{"text":"Ravager: Very high health, normal speed, normal attack damage and reduced knockback resistance. Destroys block around itself when it spawns. May destroy blocks around it occasionally."}','{"text":"Drowned: Normal health, normal speed, normal attack damage and may spawn as a baby. Has a trident most of the time.\\n\\nMagician: Shoots fire sparks every 5 seconds. Also shoots a blizzard dealing superfast damage and slows the player."}','{"text":"Alchemist: Every 5 seconds the alchemist shoots a projectile with random negative effects if a player is hit.\\n\\nBomber: The most dangerous custom mob. A creeper which continously launches TNT and detonates itself damaging everything around it."}','[{"text":""},{"text":"Mob Tiers\\n","bold":true},{"text":"Mobs are categoried into 5 tiers: Common, Uncommon, Rare, Epic and Legendary.\\n\\nThese tiers differ by their spawn animation when triggered.\\n\\nHigher tiers become more common the more you progress."}]','{"text":"Common: Does not spawn Magician, Alchemist and Bomber mobs. \\n\\nMay drop Tier I Enchantlets and generic items. \\n\\nHas an absurdly small chance of dropping a Totem of Undying and Uncommon loot."}','{"text":"Uncommon: Does not spawn Magician, Alchemist and Bomber mobs. \\n\\nMay drop Tier II Enchantlets and higher quality items. \\n\\nHas an absurdly small chance of dropping a Totem of Undying and Rare loot."}','{"text":"Rare: Does not spawn the Bomber mob. \\n\\nMay drop Tier III Enchantlets and good/custom items. \\n\\nHas a small chance of dropping a Totem of Undying, Epic loot and Safety Banners."}','{"text":"Epic: Spawns every mob type. \\n\\nMay drop Tier IV Enchantlets and top-tier items. \\n\\nHas a chance of dropping a Totem of Undying, Safety Banners and a small chance of dropping Legendary loot."}','{"text":"Legendary: Spawns every mob type. \\n\\nMay drop Tier V Enchantlets and god-tier weapons/armor. \\n\\nEvery Legendary will have a visible bossbar.\\n\\nLegendaries have random elements."}','{"text":"Water element: Hits spawn water underneath the player and has a chance of spawning a wave depleting cobwebs and crazy damage.\\n\\nFire Element: Sets everything on fire and spawns Fire Spirals causing massive explosions."}','{"text":"Wind element: Cannot be crit by ordinary means, slows the player and has a chance to spawn Tornadoes following the player.\\n\\nIce element: Slows the player when hit and causes Ice to fall dealing massive damage towards the player."}','{"text":"Ground element: Deals damage to grounded players in a radius. Can cause Earthquake reaching its radius. Try jumping to avoid.\\n\\nToxic element: Has a small chance to steal positive effects. Spawns a toxic cloud causing massive damage and negative effects. "}','[{"text":""},{"text":"Cave Biomes\\n","bold":true},{"text":"Deeprock Caverns: The most common biome, has Dinosaur structures. May drop a biome armor piece when a legendary is killed here.\\n\\nDeep Dark: Minecraft\'s Deep Dark is also here which holds the Temple structure. Beware of the Warden."}]','{"text":"Amethyst Caves: A glorious cave with the Altar structure. Is quite rare and small in size usually.\\n\\nFrozen Caves: A frozen wasteland holding an ancient technological structure. Defeating a legendary may drop a biome-specfic piece."}','{"text":"Molten Caves: Lava. Holds the Knuckle structure. May drop a biome-specific piece when a legendary is defeated.\\n\\nSulfide Caves: A toxic wasteland. Water poisons the player. Holds a Rotten Village. May drop a biome-specific piece as well."}','{"text":"Limestone Grotto: Has a lot of dripstone. Holds the Limestone Houses structure. One can find shulker shells in this biome. Earthquake legendaries tend to be more scary in this biome."}','[{"text":""},{"text":"Offhand Items\\n","bold":true},{"text":"Sword: Increases the mob\'s attack damage by 10%\\n\\nLeather boots: Increases the mob\'s speed by 10%\\n\\nShield: Increases the mob\'s armor and armor toughness."}]','{"text":"Goat horn: Increases the mob\'s knockback. Scales with tier.\\n\\nChorus Fruit: Has a 12.5% chance to use a Chorus Fruit upon being hit.\\n\\nTotem of Undying: Epics and above may have totems."}','{"text":"Firework Rocket: Mob may launch itself towards the player.\\n\\nPillars and Skeleton will have custom tipped arrows in their offhand. Pillagers may even have rockets.\\n\\nRanged mobs do not get extra attack damage offhand items."}','[{"text":""},{"text":"Structures\\n","bold":true},{"text":"Dinosaur: A giant dinosaur fossil found in Deeprock Caverns.\\n\\nSulfide Huts: A village in Sulfide Caves. Holds potions and Suspicious stew.\\n\\nFrozen Robot: Lost technology found in Frozen Caves. May contain traps."}]','{"text":"Knuckle: Found in Molten Caves. Contains Ancient Debris and maybe a trap.\\n\\nDeep Temple: Found in Deep Dark, contains a library.\\n\\nAmethyst Altar: Can teleport players to the surface after right clicking the crystal. "}','{"text":"Limestone Houses: Holds a bunch of useful functional blocks such as Blast Furnace, Grindstone etc. Its loot may contain shulker shells."}','[{"text":""},{"text":"Enchantlets\\n","bold":true},{"text":"Mobs may drop Enchantlets. Enchantlets can be used to enchant gear above the vanilla limit. However, at the cost of spending more levels. There are different tiers of Enchantlets depending on the mob\'s tier. Use these to your advantage."}]','{"text":"Enchantlets differ from vanilla enchanting by setting enchantments instead of randomly enchanting, only essential enchants will be given through Enchantlets. Protection and Sharpness to name a few. It can even exceed the vanilla limit."}','[{"text":""},{"text":"Custom Items\\n","bold":true},{"text":"Infinity Cave introduces a vast amount of different items.\\n\\nLegendary mobs may drop weapons such as the Amethyst Blade or the Steel Battleaxe. These weapons are much stronger than Netherite."}]','{"text":"Safety Banner: Clears a 50x50 area of mob-spawning when placed. \\n\\nFireball: Found in Molten Caves by killing rares and above.\\n\\nIce Spark: Found in Frozen Caves by killing rares and above."}','{"text":"Magic Repair: Usually found by killing Legendaries, fully repairs your armor at the cost of 10 levels.\\n\\nTeleport: Found by defeating higher tier Endermen.\\n\\nLight Emblem: Spawns a ton of mobs around its area, player-dependent."}','[{"text":""},{"text":"Progression\\n","bold":true},{"text":"As the player defeat mobs their progression will increase. The amount of progression will determine the spawn rates for tiers to spawn. The more kills, the higher the likelihood of higher tiers spawning. This is configurable in the settings."}]','[{"text":""},{"text":"Strategies\\n","bold":true},{"text":"Mobs here are no joke. Death is always near. It is important to conserve good items for strong mobs. \\n\\nKeyword here is items. Some items are essential to circumvent risk and secure yourself as much as possible."}]','{"text":"Cobwebs: Cobwebs are incredibly useful as a method of preventing mobility. In this instance they can be used to trap a spawning mob during their animation, and in general when they are moving towards you. Deeprock Caverns may drop cobwebs as a loot drop."}','{"text":"Enchantlets: In order to snowball your way into this it is important to use Enchantlets wisely. Prioritize enchanting swords with higher tier Enchantlets first. As they make your damage yield much higher. Make sure to pickup a grindstone to reroll enchants."}','{"text":"Ender Pearls: Dropped by Enderman, usually in higher quanitites than vanilla when it comes to endermen down here. These are generally useful for getting out of sticky situations such as an overwhelming amount of mobs, or getting stuck in a cobweb. "}','{"text":"Splash Potion of Health: Generally useful for instantly healing in a sticky situation.\\n\\nSafety Banner: Incredibly useful for fighting a strong mob.\\n\\nShield: Blocks most attacks and is especially useful against ranged mobs."}','{"text":"There are a few mobs which require different strategies to beat. One of them is the Bomber. This creature is incredibly dangerous to fight. Using a ranged weapon would have the benefit of avoiding explosions and a more controlled environment."}','{"text":"The Enderman is a special breed, it is impossible to cobweb and is inescapable. However, there is one trick you can use to stop it in its tracks. Look it straight in its eyes and it will immediately freeze. Giving you time to think or a friend of yours to end it off."}','{"text":"Thank you for downloading! \\n\\n\\nMake sure to REPORT any bugs.\\n\\nGood luck and enjoy.\\n\\nYou may need it.\\n\\n\\n\\n\\n"}']}}} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/init.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/init.mcfunction new file mode 100644 index 0000000..101a85f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/init.mcfunction @@ -0,0 +1,78 @@ +# lcg +scoreboard objectives add ic.math dummy +scoreboard objectives add ic.math2 dummy +scoreboard objectives add ic.const dummy +scoreboard players set #ic20 ic.const 20 +scoreboard players set #ic24 ic.const 24 +scoreboard players set #ic25 ic.const 25 +scoreboard players set #ic ic.const 2 +scoreboard players set #ic10 ic.const 10 +scoreboard players set #ic100 ic.const 100 +scoreboard players set #ic200 ic.const 200 +scoreboard players set #ic1000 ic.const 1000 +scoreboard players set #ic10000 ic.const 10000 +scoreboard players set #iclcg ic.const 1103515245 + +# In order for motion to work +forceload add 0 0 0 0 + +# Scoreboard integer +scoreboard objectives add ic.int dummy +scoreboard objectives add ic.id dummy +scoreboard objectives add ic.data dummy +scoreboard objectives add ic.animate dummy +scoreboard objectives add ic.altar dummy +scoreboard objectives add ic.uuid dummy +scoreboard objectives add ic.math dummy +scoreboard objectives add ic.offhand dummy +scoreboard objectives add ic.hit_projectile custom:play_time + +# armor $ weapons +scoreboard objectives add ic.torpedo custom:play_time +scoreboard objectives add ic.sonic custom:play_time +scoreboard objectives add ic.damage_blocked minecraft.custom:minecraft.damage_blocked_by_shield +scoreboard objectives add ic.torpedo_charge dummy +scoreboard objectives add ic.sonic_charge dummy +scoreboard objectives add ic.molten_hammer custom:play_time +scoreboard objectives add ic.amethyst_blade custom:play_time +scoreboard objectives add ic.steel_battleaxe custom:play_time +scoreboard objectives add ic.bastion_piercer custom:play_time + +# entity hit detection +scoreboard objectives add ic.been_shot dummy +scoreboard objectives add ic.const dummy +scoreboard players set 2 ic.const 2 +scoreboard players set 20 ic.const 20 +scoreboard players set -1 ic.const -1 +scoreboard objectives add ic.phit dummy +scoreboard objectives add ic.hit_cd dummy +scoreboard players set #ic20 ic.const 420 +scoreboard players set #ic60 ic.const 360 +scoreboard players set #ic00 ic.const 300 +scoreboard players set #ic0 ic.const 240 +scoreboard players set #ic180 ic.const 180 +scoreboard players set #ic120 ic.const 120 +scoreboard players set #ic60 ic.const 60 + +scoreboard objectives add ic.id dummy +scoreboard objectives add ic.bit0 dummy +scoreboard objectives add ic.bit1 dummy +scoreboard objectives add ic.bit2 dummy +scoreboard objectives add ic.bit3 dummy +scoreboard objectives add ic.bit4 dummy +scoreboard objectives add ic.bit5 dummy +scoreboard objectives add ic.bit6 dummy +scoreboard objectives add ic.bit7 dummy +scoreboard objectives add ic.bit8 dummy +scoreboard objectives add ic.bit9 dummy +scoreboard objectives add ic.bit10 dummy +scoreboard objectives add ic.bit11 dummy +scoreboard objectives add ic.bit12 dummy +scoreboard objectives add ic.bit13 dummy +scoreboard objectives add ic.bit14 dummy +scoreboard objectives add ic.bit15 dummy + +# Misc +scoreboard objectives add ic.health health +gamerule commandModificationBlockLimit 10000000 +scoreboard players set #ic1000 ic.const 1000 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/load.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/load.mcfunction new file mode 100644 index 0000000..45f72bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/load.mcfunction @@ -0,0 +1,5 @@ +scoreboard players set @s ic.sonic_charge 0 + +scoreboard players set @s ic.torpedo_charge 0 + +execute store result score @s ic.progression run scoreboard players get @s ic.progression \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/entity.mcfunction new file mode 100644 index 0000000..8460257 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/entity.mcfunction @@ -0,0 +1 @@ +scoreboard players set @s ic.altar 85 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/as.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/as.mcfunction new file mode 100644 index 0000000..4850f12 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/as.mcfunction @@ -0,0 +1,3 @@ +tp ^ ^ ^ + +execute at @s run particle minecraft:reverse_portal ~ ~0.8 ~ 0 0 0 0.6 100 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f1.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f1.mcfunction new file mode 100644 index 0000000..8c61279 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f1.mcfunction @@ -0,0 +1,22 @@ +particle witch ^0.000 ^0.000 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.020 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.040 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.060 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.080 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.100 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.120 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.140 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.160 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.180 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.200 ^0.000 0 0 0 0 1 force @a +particle witch ^0.000 ^0.220 ^0.000 0 0 0 0 1 force @a + +particle minecraft:witch ~ ~2 ~ 0.2 0.4 0.2 0 5 force @a +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.04 1 +particle minecraft:flash ~ ~ ~ 0 0.5 0.5 0.5 100 force +particle minecraft:end_rod ~ ~ ~ 0 0.5 0.5 0.5 1000 force +playsound minecraft:entity.wither.spawn master @a[distance=..20] ~ ~ ~ 1 0.1 1 + +execute as @p[tag=ic.altar] run tag @s remove ic.altar + +execute as @a[distance=..5] positioned over motion_blocking run function infinity_cave:mechanics/altar/frames/as \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f10.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f10.mcfunction new file mode 100644 index 0000000..86c9af2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f10.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.030 ^2.400 ^0.039 0 0 0 0 1 force @a +particle witch ^0.028 ^2.420 ^0.041 0 0 0 0 1 force @a +particle witch ^0.026 ^2.440 ^0.043 0 0 0 0 1 force @a +particle witch ^0.023 ^2.460 ^0.046 0 0 0 0 1 force @a +particle witch ^0.021 ^2.480 ^0.048 0 0 0 0 1 force @a +particle witch ^0.018 ^2.500 ^0.050 0 0 0 0 1 force @a +particle witch ^0.016 ^2.520 ^0.052 0 0 0 0 1 force @a +particle witch ^0.013 ^2.540 ^0.053 0 0 0 0 1 force @a +particle witch ^0.010 ^2.560 ^0.055 0 0 0 0 1 force @a +particle witch ^0.006 ^2.580 ^0.056 0 0 0 0 1 force @a +particle witch ^0.003 ^2.600 ^0.057 0 0 0 0 1 force @a +particle witch ^-0.000 ^2.620 ^0.058 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.28 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f11.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f11.mcfunction new file mode 100644 index 0000000..9952148 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f11.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.004 ^2.640 ^0.059 0 0 0 0 1 force @a +particle witch ^-0.008 ^2.660 ^0.060 0 0 0 0 1 force @a +particle witch ^-0.011 ^2.680 ^0.060 0 0 0 0 1 force @a +particle witch ^-0.015 ^2.700 ^0.060 0 0 0 0 1 force @a +particle witch ^-0.019 ^2.720 ^0.060 0 0 0 0 1 force @a +particle witch ^-0.023 ^2.740 ^0.059 0 0 0 0 1 force @a +particle witch ^-0.027 ^2.760 ^0.059 0 0 0 0 1 force @a +particle witch ^-0.031 ^2.780 ^0.058 0 0 0 0 1 force @a +particle witch ^-0.035 ^2.800 ^0.057 0 0 0 0 1 force @a +particle witch ^-0.038 ^2.820 ^0.055 0 0 0 0 1 force @a +particle witch ^-0.042 ^2.840 ^0.054 0 0 0 0 1 force @a +particle witch ^-0.046 ^2.860 ^0.052 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.30 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f12.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f12.mcfunction new file mode 100644 index 0000000..a224fb9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f12.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.050 ^2.880 ^0.050 0 0 0 0 1 force @a +particle witch ^-0.053 ^2.900 ^0.047 0 0 0 0 1 force @a +particle witch ^-0.057 ^2.920 ^0.045 0 0 0 0 1 force @a +particle witch ^-0.060 ^2.940 ^0.042 0 0 0 0 1 force @a +particle witch ^-0.064 ^2.960 ^0.039 0 0 0 0 1 force @a +particle witch ^-0.067 ^2.980 ^0.035 0 0 0 0 1 force @a +particle witch ^-0.070 ^3.000 ^0.031 0 0 0 0 1 force @a +particle witch ^-0.072 ^3.020 ^0.028 0 0 0 0 1 force @a +particle witch ^-0.075 ^3.040 ^0.024 0 0 0 0 1 force @a +particle witch ^-0.077 ^3.060 ^0.019 0 0 0 0 1 force @a +particle witch ^-0.079 ^3.080 ^0.015 0 0 0 0 1 force @a +particle witch ^-0.081 ^3.100 ^0.010 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.32 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f13.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f13.mcfunction new file mode 100644 index 0000000..a8fac87 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f13.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.082 ^3.120 ^0.005 0 0 0 0 1 force @a +particle witch ^-0.084 ^3.140 ^0.000 0 0 0 0 1 force @a +particle witch ^-0.085 ^3.160 ^-0.005 0 0 0 0 1 force @a +particle witch ^-0.085 ^3.180 ^-0.010 0 0 0 0 1 force @a +particle witch ^-0.086 ^3.200 ^-0.015 0 0 0 0 1 force @a +particle witch ^-0.086 ^3.220 ^-0.020 0 0 0 0 1 force @a +particle witch ^-0.085 ^3.240 ^-0.026 0 0 0 0 1 force @a +particle witch ^-0.085 ^3.260 ^-0.031 0 0 0 0 1 force @a +particle witch ^-0.084 ^3.280 ^-0.037 0 0 0 0 1 force @a +particle witch ^-0.082 ^3.300 ^-0.042 0 0 0 0 1 force @a +particle witch ^-0.080 ^3.320 ^-0.048 0 0 0 0 1 force @a +particle witch ^-0.078 ^0.007 ^-0.053 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.34 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f14.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f14.mcfunction new file mode 100644 index 0000000..dbfffc2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f14.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.076 ^0.027 ^-0.058 0 0 0 0 1 force @a +particle witch ^-0.073 ^0.047 ^-0.064 0 0 0 0 1 force @a +particle witch ^-0.070 ^0.067 ^-0.069 0 0 0 0 1 force @a +particle witch ^-0.067 ^0.087 ^-0.074 0 0 0 0 1 force @a +particle witch ^-0.063 ^0.107 ^-0.078 0 0 0 0 1 force @a +particle witch ^-0.059 ^0.127 ^-0.083 0 0 0 0 1 force @a +particle witch ^-0.054 ^0.147 ^-0.087 0 0 0 0 1 force @a +particle witch ^-0.049 ^0.167 ^-0.091 0 0 0 0 1 force @a +particle witch ^-0.044 ^0.187 ^-0.095 0 0 0 0 1 force @a +particle witch ^-0.039 ^0.207 ^-0.099 0 0 0 0 1 force @a +particle witch ^-0.033 ^0.227 ^-0.102 0 0 0 0 1 force @a +particle witch ^-0.027 ^0.247 ^-0.105 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.36 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f15.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f15.mcfunction new file mode 100644 index 0000000..15053ca --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f15.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.021 ^0.267 ^-0.108 0 0 0 0 1 force @a +particle witch ^-0.015 ^0.287 ^-0.110 0 0 0 0 1 force @a +particle witch ^-0.008 ^0.307 ^-0.112 0 0 0 0 1 force @a +particle witch ^-0.002 ^0.327 ^-0.114 0 0 0 0 1 force @a +particle witch ^0.005 ^0.347 ^-0.115 0 0 0 0 1 force @a +particle witch ^0.012 ^0.367 ^-0.116 0 0 0 0 1 force @a +particle witch ^0.019 ^0.387 ^-0.116 0 0 0 0 1 force @a +particle witch ^0.026 ^0.407 ^-0.116 0 0 0 0 1 force @a +particle witch ^0.034 ^0.427 ^-0.115 0 0 0 0 1 force @a +particle witch ^0.041 ^0.447 ^-0.114 0 0 0 0 1 force @a +particle witch ^0.048 ^0.467 ^-0.113 0 0 0 0 1 force @a +particle witch ^0.055 ^0.487 ^-0.111 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.38 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f16.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f16.mcfunction new file mode 100644 index 0000000..17e156c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f16.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.063 ^0.507 ^-0.108 0 0 0 0 1 force @a +particle witch ^0.070 ^0.527 ^-0.105 0 0 0 0 1 force @a +particle witch ^0.077 ^0.547 ^-0.102 0 0 0 0 1 force @a +particle witch ^0.084 ^0.567 ^-0.098 0 0 0 0 1 force @a +particle witch ^0.090 ^0.587 ^-0.094 0 0 0 0 1 force @a +particle witch ^0.097 ^0.607 ^-0.089 0 0 0 0 1 force @a +particle witch ^0.103 ^0.627 ^-0.084 0 0 0 0 1 force @a +particle witch ^0.109 ^0.647 ^-0.079 0 0 0 0 1 force @a +particle witch ^0.115 ^0.667 ^-0.073 0 0 0 0 1 force @a +particle witch ^0.120 ^0.687 ^-0.066 0 0 0 0 1 force @a +particle witch ^0.125 ^0.707 ^-0.060 0 0 0 0 1 force @a +particle witch ^0.130 ^0.727 ^-0.053 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.40 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f17.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f17.mcfunction new file mode 100644 index 0000000..e294fd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f17.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.134 ^0.747 ^-0.045 0 0 0 0 1 force @a +particle witch ^0.138 ^0.767 ^-0.038 0 0 0 0 1 force @a +particle witch ^0.141 ^0.787 ^-0.030 0 0 0 0 1 force @a +particle witch ^0.144 ^0.807 ^-0.021 0 0 0 0 1 force @a +particle witch ^0.146 ^0.827 ^-0.013 0 0 0 0 1 force @a +particle witch ^0.148 ^0.847 ^-0.004 0 0 0 0 1 force @a +particle witch ^0.150 ^0.867 ^0.005 0 0 0 0 1 force @a +particle witch ^0.150 ^0.887 ^0.014 0 0 0 0 1 force @a +particle witch ^0.151 ^0.907 ^0.023 0 0 0 0 1 force @a +particle witch ^0.150 ^0.927 ^0.033 0 0 0 0 1 force @a +particle witch ^0.150 ^0.947 ^0.042 0 0 0 0 1 force @a +particle witch ^0.148 ^0.967 ^0.051 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.42 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f18.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f18.mcfunction new file mode 100644 index 0000000..570d0f6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f18.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.146 ^0.987 ^0.061 0 0 0 0 1 force @a +particle witch ^0.144 ^1.007 ^0.070 0 0 0 0 1 force @a +particle witch ^0.140 ^1.027 ^0.079 0 0 0 0 1 force @a +particle witch ^0.137 ^1.047 ^0.088 0 0 0 0 1 force @a +particle witch ^0.132 ^1.067 ^0.097 0 0 0 0 1 force @a +particle witch ^0.127 ^1.087 ^0.106 0 0 0 0 1 force @a +particle witch ^0.122 ^1.107 ^0.114 0 0 0 0 1 force @a +particle witch ^0.116 ^1.127 ^0.123 0 0 0 0 1 force @a +particle witch ^0.109 ^1.147 ^0.131 0 0 0 0 1 force @a +particle witch ^0.102 ^1.167 ^0.138 0 0 0 0 1 force @a +particle witch ^0.095 ^1.187 ^0.145 0 0 0 0 1 force @a +particle witch ^0.086 ^1.207 ^0.152 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.44 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f19.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f19.mcfunction new file mode 100644 index 0000000..f2bbbc7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f19.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.078 ^1.227 ^0.158 0 0 0 0 1 force @a +particle witch ^0.069 ^1.247 ^0.164 0 0 0 0 1 force @a +particle witch ^0.059 ^1.267 ^0.169 0 0 0 0 1 force @a +particle witch ^0.050 ^1.287 ^0.174 0 0 0 0 1 force @a +particle witch ^0.039 ^1.307 ^0.178 0 0 0 0 1 force @a +particle witch ^0.029 ^1.327 ^0.182 0 0 0 0 1 force @a +particle witch ^0.018 ^1.347 ^0.185 0 0 0 0 1 force @a +particle witch ^0.007 ^1.367 ^0.187 0 0 0 0 1 force @a +particle witch ^-0.004 ^1.387 ^0.189 0 0 0 0 1 force @a +particle witch ^-0.016 ^1.407 ^0.190 0 0 0 0 1 force @a +particle witch ^-0.027 ^1.427 ^0.190 0 0 0 0 1 force @a +particle witch ^-0.039 ^1.447 ^0.190 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.46 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f2.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f2.mcfunction new file mode 100644 index 0000000..3ff7d35 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f2.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.000 ^0.480 ^0.002 0 0 0 0 1 force @a +particle witch ^0.000 ^0.500 ^0.002 0 0 0 0 1 force @a +particle witch ^0.000 ^0.520 ^0.002 0 0 0 0 1 force @a +particle witch ^-0.000 ^0.540 ^0.002 0 0 0 0 1 force @a +particle witch ^-0.000 ^0.560 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.000 ^0.580 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.001 ^0.600 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.001 ^0.620 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.001 ^0.640 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.001 ^0.660 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.002 ^0.680 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.002 ^0.700 ^0.004 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.08 1 diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f20.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f20.mcfunction new file mode 100644 index 0000000..5956841 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f20.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.051 ^1.467 ^0.189 0 0 0 0 1 force @a +particle witch ^-0.063 ^1.487 ^0.187 0 0 0 0 1 force @a +particle witch ^-0.074 ^1.507 ^0.184 0 0 0 0 1 force @a +particle witch ^-0.086 ^1.527 ^0.181 0 0 0 0 1 force @a +particle witch ^-0.097 ^1.547 ^0.177 0 0 0 0 1 force @a +particle witch ^-0.109 ^1.567 ^0.172 0 0 0 0 1 force @a +particle witch ^-0.120 ^1.587 ^0.167 0 0 0 0 1 force @a +particle witch ^-0.131 ^1.607 ^0.161 0 0 0 0 1 force @a +particle witch ^-0.141 ^1.627 ^0.154 0 0 0 0 1 force @a +particle witch ^-0.151 ^1.647 ^0.146 0 0 0 0 1 force @a +particle witch ^-0.161 ^1.667 ^0.138 0 0 0 0 1 force @a +particle witch ^-0.170 ^1.687 ^0.129 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.46 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f21.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f21.mcfunction new file mode 100644 index 0000000..9a78d7c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f21.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.179 ^1.707 ^0.120 0 0 0 0 1 force @a +particle witch ^-0.188 ^1.727 ^0.109 0 0 0 0 1 force @a +particle witch ^-0.195 ^1.747 ^0.099 0 0 0 0 1 force @a +particle witch ^-0.203 ^1.767 ^0.088 0 0 0 0 1 force @a +particle witch ^-0.209 ^1.787 ^0.076 0 0 0 0 1 force @a +particle witch ^-0.215 ^1.807 ^0.064 0 0 0 0 1 force @a +particle witch ^-0.220 ^1.827 ^0.051 0 0 0 0 1 force @a +particle witch ^-0.224 ^1.847 ^0.038 0 0 0 0 1 force @a +particle witch ^-0.228 ^1.867 ^0.025 0 0 0 0 1 force @a +particle witch ^-0.231 ^1.887 ^0.011 0 0 0 0 1 force @a +particle witch ^-0.233 ^1.907 ^-0.003 0 0 0 0 1 force @a +particle witch ^-0.234 ^1.927 ^-0.017 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.48 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f22.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f22.mcfunction new file mode 100644 index 0000000..ce73603 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f22.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.234 ^1.947 ^-0.031 0 0 0 0 1 force @a +particle witch ^-0.234 ^1.967 ^-0.045 0 0 0 0 1 force @a +particle witch ^-0.233 ^1.987 ^-0.060 0 0 0 0 1 force @a +particle witch ^-0.230 ^2.007 ^-0.074 0 0 0 0 1 force @a +particle witch ^-0.227 ^2.027 ^-0.089 0 0 0 0 1 force @a +particle witch ^-0.223 ^2.047 ^-0.103 0 0 0 0 1 force @a +particle witch ^-0.218 ^2.067 ^-0.117 0 0 0 0 1 force @a +particle witch ^-0.212 ^2.087 ^-0.131 0 0 0 0 1 force @a +particle witch ^-0.205 ^2.107 ^-0.144 0 0 0 0 1 force @a +particle witch ^-0.198 ^2.127 ^-0.157 0 0 0 0 1 force @a +particle witch ^-0.189 ^2.147 ^-0.170 0 0 0 0 1 force @a +particle witch ^-0.180 ^2.167 ^-0.183 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.50 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f23.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f23.mcfunction new file mode 100644 index 0000000..88fe6ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f23.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.170 ^2.187 ^-0.195 0 0 0 0 1 force @a +particle witch ^-0.159 ^2.207 ^-0.206 0 0 0 0 1 force @a +particle witch ^-0.148 ^2.227 ^-0.217 0 0 0 0 1 force @a +particle witch ^-0.136 ^2.247 ^-0.227 0 0 0 0 1 force @a +particle witch ^-0.123 ^2.267 ^-0.236 0 0 0 0 1 force @a +particle witch ^-0.109 ^2.287 ^-0.245 0 0 0 0 1 force @a +particle witch ^-0.095 ^2.307 ^-0.253 0 0 0 0 1 force @a +particle witch ^-0.080 ^2.327 ^-0.260 0 0 0 0 1 force @a +particle witch ^-0.065 ^2.347 ^-0.266 0 0 0 0 1 force @a +particle witch ^-0.049 ^2.367 ^-0.271 0 0 0 0 1 force @a +particle witch ^-0.033 ^2.387 ^-0.276 0 0 0 0 1 force @a +particle witch ^-0.016 ^2.407 ^-0.279 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.52 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f24.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f24.mcfunction new file mode 100644 index 0000000..e5ddcc6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f24.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.000 ^2.427 ^-0.281 0 0 0 0 1 force @a +particle witch ^0.017 ^2.447 ^-0.283 0 0 0 0 1 force @a +particle witch ^0.035 ^2.467 ^-0.283 0 0 0 0 1 force @a +particle witch ^0.052 ^2.487 ^-0.283 0 0 0 0 1 force @a +particle witch ^0.069 ^2.507 ^-0.281 0 0 0 0 1 force @a +particle witch ^0.086 ^2.527 ^-0.278 0 0 0 0 1 force @a +particle witch ^0.104 ^2.547 ^-0.274 0 0 0 0 1 force @a +particle witch ^0.121 ^2.567 ^-0.269 0 0 0 0 1 force @a +particle witch ^0.138 ^2.587 ^-0.264 0 0 0 0 1 force @a +particle witch ^0.154 ^2.607 ^-0.257 0 0 0 0 1 force @a +particle witch ^0.170 ^2.627 ^-0.248 0 0 0 0 1 force @a +particle witch ^0.186 ^2.647 ^-0.239 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.54 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f25.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f25.mcfunction new file mode 100644 index 0000000..762b3a8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f25.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.202 ^2.667 ^-0.229 0 0 0 0 1 force @a +particle witch ^0.216 ^2.687 ^-0.218 0 0 0 0 1 force @a +particle witch ^0.231 ^2.707 ^-0.206 0 0 0 0 1 force @a +particle witch ^0.244 ^2.727 ^-0.193 0 0 0 0 1 force @a +particle witch ^0.257 ^2.747 ^-0.180 0 0 0 0 1 force @a +particle witch ^0.269 ^2.767 ^-0.165 0 0 0 0 1 force @a +particle witch ^0.280 ^2.787 ^-0.149 0 0 0 0 1 force @a +particle witch ^0.291 ^2.807 ^-0.133 0 0 0 0 1 force @a +particle witch ^0.300 ^2.827 ^-0.116 0 0 0 0 1 force @a +particle witch ^0.309 ^2.847 ^-0.099 0 0 0 0 1 force @a +particle witch ^0.316 ^2.867 ^-0.081 0 0 0 0 1 force @a +particle witch ^0.322 ^2.887 ^-0.062 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.56 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f26.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f26.mcfunction new file mode 100644 index 0000000..488e8e3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f26.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.328 ^2.907 ^-0.043 0 0 0 0 1 force @a +particle witch ^0.332 ^2.927 ^-0.023 0 0 0 0 1 force @a +particle witch ^0.335 ^2.947 ^-0.003 0 0 0 0 1 force @a +particle witch ^0.336 ^2.967 ^0.017 0 0 0 0 1 force @a +particle witch ^0.337 ^2.987 ^0.037 0 0 0 0 1 force @a +particle witch ^0.336 ^3.007 ^0.058 0 0 0 0 1 force @a +particle witch ^0.334 ^3.027 ^0.078 0 0 0 0 1 force @a +particle witch ^0.331 ^3.047 ^0.099 0 0 0 0 1 force @a +particle witch ^0.326 ^3.067 ^0.119 0 0 0 0 1 force @a +particle witch ^0.321 ^3.087 ^0.140 0 0 0 0 1 force @a +particle witch ^0.314 ^3.107 ^0.159 0 0 0 0 1 force @a +particle witch ^0.305 ^3.127 ^0.179 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.58 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f27.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f27.mcfunction new file mode 100644 index 0000000..52eec59 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f27.mcfunction @@ -0,0 +1,21 @@ + +particle witch ^0.296 ^3.147 ^0.198 0 0 0 0 1 force @a +particle witch ^0.285 ^3.167 ^0.217 0 0 0 0 1 force @a +particle witch ^0.273 ^3.187 ^0.235 0 0 0 0 1 force @a +particle witch ^0.260 ^3.207 ^0.253 0 0 0 0 1 force @a +particle witch ^0.246 ^3.227 ^0.269 0 0 0 0 1 force @a +particle witch ^0.231 ^3.247 ^0.286 0 0 0 0 1 force @a +particle witch ^0.215 ^3.267 ^0.301 0 0 0 0 1 force @a +particle witch ^0.198 ^3.287 ^0.315 0 0 0 0 1 force @a +particle witch ^0.179 ^3.307 ^0.328 0 0 0 0 1 force @a +particle witch ^0.160 ^3.327 ^0.340 0 0 0 0 1 force @a +particle witch ^0.141 ^0.013 ^0.351 0 0 0 0 1 force @a +particle witch ^0.120 ^0.033 ^0.361 0 0 0 0 1 force @a + +function infinity_cave:mechanics/altar/sphere + +particle minecraft:flash ~ ~ ~ 0 0 0 0 10 force +particle minecraft:end_rod ~ ~ ~ 0 0.5 0.5 1 100 force +playsound minecraft:entity.wither.shoot master @a[distance=..20] ~ ~ ~ 1 1.5 1 + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.60 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f28.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f28.mcfunction new file mode 100644 index 0000000..c97259f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f28.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.099 ^0.053 ^0.370 0 0 0 0 1 force @a +particle witch ^0.077 ^0.073 ^0.378 0 0 0 0 1 force @a +particle witch ^0.054 ^0.093 ^0.384 0 0 0 0 1 force @a +particle witch ^0.031 ^0.113 ^0.389 0 0 0 0 1 force @a +particle witch ^0.008 ^0.133 ^0.392 0 0 0 0 1 force @a +particle witch ^-0.016 ^0.153 ^0.394 0 0 0 0 1 force @a +particle witch ^-0.039 ^0.173 ^0.395 0 0 0 0 1 force @a +particle witch ^-0.063 ^0.193 ^0.394 0 0 0 0 1 force @a +particle witch ^-0.087 ^0.213 ^0.392 0 0 0 0 1 force @a +particle witch ^-0.111 ^0.233 ^0.388 0 0 0 0 1 force @a +particle witch ^-0.135 ^0.253 ^0.383 0 0 0 0 1 force @a +particle witch ^-0.159 ^0.273 ^0.376 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.62 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f29.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f29.mcfunction new file mode 100644 index 0000000..89d9d68 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f29.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.182 ^0.293 ^0.368 0 0 0 0 1 force @a +particle witch ^-0.205 ^0.313 ^0.359 0 0 0 0 1 force @a +particle witch ^-0.228 ^0.333 ^0.348 0 0 0 0 1 force @a +particle witch ^-0.250 ^0.353 ^0.335 0 0 0 0 1 force @a +particle witch ^-0.271 ^0.373 ^0.322 0 0 0 0 1 force @a +particle witch ^-0.291 ^0.393 ^0.307 0 0 0 0 1 force @a +particle witch ^-0.311 ^0.413 ^0.290 0 0 0 0 1 force @a +particle witch ^-0.329 ^0.433 ^0.273 0 0 0 0 1 force @a +particle witch ^-0.347 ^0.453 ^0.254 0 0 0 0 1 force @a +particle witch ^-0.364 ^0.473 ^0.234 0 0 0 0 1 force @a +particle witch ^-0.379 ^0.493 ^0.213 0 0 0 0 1 force @a +particle witch ^-0.394 ^0.513 ^0.191 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.64 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f3.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f3.mcfunction new file mode 100644 index 0000000..86ce4e3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f3.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.002 ^0.720 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.003 ^0.740 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.003 ^0.760 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.004 ^0.780 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.004 ^0.800 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.004 ^0.820 ^0.004 0 0 0 0 1 force @a +particle witch ^-0.005 ^0.840 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.005 ^0.860 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.006 ^0.880 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.006 ^0.900 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.007 ^0.920 ^0.003 0 0 0 0 1 force @a +particle witch ^-0.007 ^0.940 ^0.002 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.12 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f30.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f30.mcfunction new file mode 100644 index 0000000..9a22376 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f30.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.407 ^0.533 ^0.168 0 0 0 0 1 force @a +particle witch ^-0.418 ^0.553 ^0.144 0 0 0 0 1 force @a +particle witch ^-0.428 ^0.573 ^0.119 0 0 0 0 1 force @a +particle witch ^-0.437 ^0.593 ^0.094 0 0 0 0 1 force @a +particle witch ^-0.444 ^0.613 ^0.068 0 0 0 0 1 force @a +particle witch ^-0.450 ^0.633 ^0.041 0 0 0 0 1 force @a +particle witch ^-0.454 ^0.653 ^0.014 0 0 0 0 1 force @a +particle witch ^-0.457 ^0.673 ^-0.013 0 0 0 0 1 force @a +particle witch ^-0.458 ^0.693 ^-0.041 0 0 0 0 1 force @a +particle witch ^-0.457 ^0.713 ^-0.069 0 0 0 0 1 force @a +particle witch ^-0.454 ^0.733 ^-0.096 0 0 0 0 1 force @a +particle witch ^-0.450 ^0.753 ^-0.124 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.66 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f31.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f31.mcfunction new file mode 100644 index 0000000..fdd7b74 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f31.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.444 ^0.773 ^-0.152 0 0 0 0 1 force @a +particle witch ^-0.437 ^0.793 ^-0.179 0 0 0 0 1 force @a +particle witch ^-0.428 ^0.813 ^-0.206 0 0 0 0 1 force @a +particle witch ^-0.417 ^0.833 ^-0.232 0 0 0 0 1 force @a +particle witch ^-0.404 ^0.853 ^-0.258 0 0 0 0 1 force @a +particle witch ^-0.390 ^0.873 ^-0.284 0 0 0 0 1 force @a +particle witch ^-0.374 ^0.893 ^-0.308 0 0 0 0 1 force @a +particle witch ^-0.357 ^0.913 ^-0.332 0 0 0 0 1 force @a +particle witch ^-0.338 ^0.933 ^-0.355 0 0 0 0 1 force @a +particle witch ^-0.318 ^0.953 ^-0.376 0 0 0 0 1 force @a +particle witch ^-0.296 ^0.973 ^-0.397 0 0 0 0 1 force @a +particle witch ^-0.274 ^0.993 ^-0.416 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.68 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f32.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f32.mcfunction new file mode 100644 index 0000000..a93e6ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f32.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.249 ^1.013 ^-0.434 0 0 0 0 1 force @a +particle witch ^-0.224 ^1.033 ^-0.450 0 0 0 0 1 force @a +particle witch ^-0.198 ^1.053 ^-0.465 0 0 0 0 1 force @a +particle witch ^-0.170 ^1.073 ^-0.479 0 0 0 0 1 force @a +particle witch ^-0.142 ^1.093 ^-0.491 0 0 0 0 1 force @a +particle witch ^-0.113 ^1.113 ^-0.501 0 0 0 0 1 force @a +particle witch ^-0.083 ^1.133 ^-0.509 0 0 0 0 1 force @a +particle witch ^-0.053 ^1.153 ^-0.516 0 0 0 0 1 force @a +particle witch ^-0.022 ^1.173 ^-0.521 0 0 0 0 1 force @a +particle witch ^0.009 ^1.193 ^-0.524 0 0 0 0 1 force @a +particle witch ^0.041 ^1.213 ^-0.525 0 0 0 0 1 force @a +particle witch ^0.073 ^1.233 ^-0.524 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.70 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f33.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f33.mcfunction new file mode 100644 index 0000000..a36ac8c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f33.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.105 ^1.253 ^-0.522 0 0 0 0 1 force @a +particle witch ^0.136 ^1.273 ^-0.517 0 0 0 0 1 force @a +particle witch ^0.168 ^1.293 ^-0.511 0 0 0 0 1 force @a +particle witch ^0.199 ^1.313 ^-0.502 0 0 0 0 1 force @a +particle witch ^0.230 ^1.333 ^-0.492 0 0 0 0 1 force @a +particle witch ^0.261 ^1.353 ^-0.479 0 0 0 0 1 force @a +particle witch ^0.290 ^1.373 ^-0.465 0 0 0 0 1 force @a +particle witch ^0.319 ^1.393 ^-0.449 0 0 0 0 1 force @a +particle witch ^0.347 ^1.413 ^-0.431 0 0 0 0 1 force @a +particle witch ^0.374 ^1.433 ^-0.412 0 0 0 0 1 force @a +particle witch ^0.400 ^1.453 ^-0.390 0 0 0 0 1 force @a +particle witch ^0.425 ^1.473 ^-0.368 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.72 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f34.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f34.mcfunction new file mode 100644 index 0000000..b6c8150 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f34.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.449 ^1.493 ^-0.343 0 0 0 0 1 force @a +particle witch ^0.471 ^1.513 ^-0.317 0 0 0 0 1 force @a +particle witch ^0.491 ^1.533 ^-0.290 0 0 0 0 1 force @a +particle witch ^0.510 ^1.553 ^-0.261 0 0 0 0 1 force @a +particle witch ^0.528 ^1.573 ^-0.231 0 0 0 0 1 force @a +particle witch ^0.543 ^1.593 ^-0.200 0 0 0 0 1 force @a +particle witch ^0.557 ^1.613 ^-0.168 0 0 0 0 1 force @a +particle witch ^0.569 ^1.633 ^-0.135 0 0 0 0 1 force @a +particle witch ^0.578 ^1.653 ^-0.101 0 0 0 0 1 force @a +particle witch ^0.586 ^1.673 ^-0.066 0 0 0 0 1 force @a +particle witch ^0.592 ^1.693 ^-0.031 0 0 0 0 1 force @a +particle witch ^0.596 ^1.713 ^0.004 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.74 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f35.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f35.mcfunction new file mode 100644 index 0000000..98b92dc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f35.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.597 ^1.733 ^0.040 0 0 0 0 1 force @a +particle witch ^0.597 ^1.753 ^0.076 0 0 0 0 1 force @a +particle witch ^0.594 ^1.773 ^0.112 0 0 0 0 1 force @a +particle witch ^0.589 ^1.793 ^0.149 0 0 0 0 1 force @a +particle witch ^0.581 ^1.813 ^0.185 0 0 0 0 1 force @a +particle witch ^0.572 ^1.833 ^0.220 0 0 0 0 1 force @a +particle witch ^0.560 ^1.853 ^0.255 0 0 0 0 1 force @a +particle witch ^0.547 ^1.873 ^0.290 0 0 0 0 1 force @a +particle witch ^0.531 ^1.893 ^0.323 0 0 0 0 1 force @a +particle witch ^0.513 ^1.913 ^0.356 0 0 0 0 1 force @a +particle witch ^0.493 ^1.933 ^0.388 0 0 0 0 1 force @a +particle witch ^0.471 ^1.953 ^0.419 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.76 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f36.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f36.mcfunction new file mode 100644 index 0000000..36730a1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f36.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.447 ^1.973 ^0.449 0 0 0 0 1 force @a +particle witch ^0.421 ^1.993 ^0.477 0 0 0 0 1 force @a +particle witch ^0.394 ^2.013 ^0.504 0 0 0 0 1 force @a +particle witch ^0.364 ^2.033 ^0.529 0 0 0 0 1 force @a +particle witch ^0.334 ^2.053 ^0.552 0 0 0 0 1 force @a +particle witch ^0.301 ^2.073 ^0.574 0 0 0 0 1 force @a +particle witch ^0.268 ^2.093 ^0.593 0 0 0 0 1 force @a +particle witch ^0.233 ^2.113 ^0.611 0 0 0 0 1 force @a +particle witch ^0.196 ^2.133 ^0.627 0 0 0 0 1 force @a +particle witch ^0.159 ^2.153 ^0.640 0 0 0 0 1 force @a +particle witch ^0.121 ^2.173 ^0.652 0 0 0 0 1 force @a +particle witch ^0.082 ^2.193 ^0.661 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.78 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f37.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f37.mcfunction new file mode 100644 index 0000000..8c91f90 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f37.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.042 ^2.213 ^0.668 0 0 0 0 1 force @a +particle witch ^0.002 ^2.233 ^0.672 0 0 0 0 1 force @a +particle witch ^-0.038 ^2.253 ^0.674 0 0 0 0 1 force @a +particle witch ^-0.079 ^2.273 ^0.673 0 0 0 0 1 force @a +particle witch ^-0.120 ^2.293 ^0.670 0 0 0 0 1 force @a +particle witch ^-0.160 ^2.313 ^0.665 0 0 0 0 1 force @a +particle witch ^-0.201 ^2.333 ^0.657 0 0 0 0 1 force @a +particle witch ^-0.241 ^2.353 ^0.647 0 0 0 0 1 force @a +particle witch ^-0.280 ^2.373 ^0.634 0 0 0 0 1 force @a +particle witch ^-0.319 ^2.393 ^0.619 0 0 0 0 1 force @a +particle witch ^-0.357 ^2.413 ^0.601 0 0 0 0 1 force @a +particle witch ^-0.395 ^2.433 ^0.581 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.80 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f38.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f38.mcfunction new file mode 100644 index 0000000..42704f5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f38.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.431 ^2.453 ^0.559 0 0 0 0 1 force @a +particle witch ^-0.465 ^2.473 ^0.534 0 0 0 0 1 force @a +particle witch ^-0.499 ^2.493 ^0.508 0 0 0 0 1 force @a +particle witch ^-0.531 ^2.513 ^0.479 0 0 0 0 1 force @a +particle witch ^-0.561 ^2.533 ^0.448 0 0 0 0 1 force @a +particle witch ^-0.589 ^2.553 ^0.416 0 0 0 0 1 force @a +particle witch ^-0.616 ^2.573 ^0.381 0 0 0 0 1 force @a +particle witch ^-0.640 ^2.593 ^0.345 0 0 0 0 1 force @a +particle witch ^-0.663 ^2.613 ^0.307 0 0 0 0 1 force @a +particle witch ^-0.683 ^2.633 ^0.268 0 0 0 0 1 force @a +particle witch ^-0.701 ^2.653 ^0.228 0 0 0 0 1 force @a +particle witch ^-0.716 ^2.673 ^0.186 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.82 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f39.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f39.mcfunction new file mode 100644 index 0000000..66240ef --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f39.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.729 ^2.693 ^0.144 0 0 0 0 1 force @a +particle witch ^-0.740 ^2.713 ^0.100 0 0 0 0 1 force @a +particle witch ^-0.748 ^2.733 ^0.056 0 0 0 0 1 force @a +particle witch ^-0.753 ^2.753 ^0.011 0 0 0 0 1 force @a +particle witch ^-0.755 ^2.773 ^-0.035 0 0 0 0 1 force @a +particle witch ^-0.755 ^2.793 ^-0.080 0 0 0 0 1 force @a +particle witch ^-0.752 ^2.813 ^-0.126 0 0 0 0 1 force @a +particle witch ^-0.746 ^2.833 ^-0.171 0 0 0 0 1 force @a +particle witch ^-0.738 ^2.853 ^-0.217 0 0 0 0 1 force @a +particle witch ^-0.726 ^2.873 ^-0.262 0 0 0 0 1 force @a +particle witch ^-0.712 ^2.893 ^-0.306 0 0 0 0 1 force @a +particle witch ^-0.696 ^2.913 ^-0.350 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.84 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f4.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f4.mcfunction new file mode 100644 index 0000000..9cfe53f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f4.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.008 ^0.960 ^0.002 0 0 0 0 1 force @a +particle witch ^-0.008 ^0.980 ^0.002 0 0 0 0 1 force @a +particle witch ^-0.008 ^1.000 ^0.001 0 0 0 0 1 force @a +particle witch ^-0.009 ^1.020 ^0.001 0 0 0 0 1 force @a +particle witch ^-0.009 ^1.040 ^0.000 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.060 ^-0.000 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.080 ^-0.001 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.100 ^-0.002 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.120 ^-0.002 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.140 ^-0.003 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.160 ^-0.004 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.180 ^-0.005 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.16 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f40.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f40.mcfunction new file mode 100644 index 0000000..5add396 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f40.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.676 ^2.933 ^-0.392 0 0 0 0 1 force @a +particle witch ^-0.654 ^2.953 ^-0.434 0 0 0 0 1 force @a +particle witch ^-0.630 ^2.973 ^-0.474 0 0 0 0 1 force @a +particle witch ^-0.603 ^2.993 ^-0.513 0 0 0 0 1 force @a +particle witch ^-0.573 ^3.013 ^-0.551 0 0 0 0 1 force @a +particle witch ^-0.541 ^3.033 ^-0.587 0 0 0 0 1 force @a +particle witch ^-0.507 ^3.053 ^-0.621 0 0 0 0 1 force @a +particle witch ^-0.471 ^3.073 ^-0.653 0 0 0 0 1 force @a +particle witch ^-0.433 ^3.093 ^-0.682 0 0 0 0 1 force @a +particle witch ^-0.393 ^3.113 ^-0.710 0 0 0 0 1 force @a +particle witch ^-0.351 ^3.133 ^-0.735 0 0 0 0 1 force @a +particle witch ^-0.307 ^3.153 ^-0.758 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.86 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f41.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f41.mcfunction new file mode 100644 index 0000000..42a899a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f41.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.262 ^3.173 ^-0.778 0 0 0 0 1 force @a +particle witch ^-0.216 ^3.193 ^-0.796 0 0 0 0 1 force @a +particle witch ^-0.169 ^3.213 ^-0.811 0 0 0 0 1 force @a +particle witch ^-0.120 ^3.233 ^-0.823 0 0 0 0 1 force @a +particle witch ^-0.071 ^3.253 ^-0.832 0 0 0 0 1 force @a +particle witch ^-0.021 ^3.273 ^-0.838 0 0 0 0 1 force @a +particle witch ^0.029 ^3.293 ^-0.841 0 0 0 0 1 force @a +particle witch ^0.080 ^3.313 ^-0.841 0 0 0 0 1 force @a +particle witch ^0.131 ^3.333 ^-0.838 0 0 0 0 1 force @a +particle witch ^0.182 ^0.020 ^-0.832 0 0 0 0 1 force @a +particle witch ^0.232 ^0.040 ^-0.823 0 0 0 0 1 force @a +particle witch ^0.282 ^0.060 ^-0.811 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.88 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f42.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f42.mcfunction new file mode 100644 index 0000000..989c11e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f42.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.332 ^0.080 ^-0.796 0 0 0 0 1 force @a +particle witch ^0.380 ^0.100 ^-0.777 0 0 0 0 1 force @a +particle witch ^0.428 ^0.120 ^-0.756 0 0 0 0 1 force @a +particle witch ^0.474 ^0.140 ^-0.732 0 0 0 0 1 force @a +particle witch ^0.519 ^0.160 ^-0.705 0 0 0 0 1 force @a +particle witch ^0.563 ^0.180 ^-0.675 0 0 0 0 1 force @a +particle witch ^0.605 ^0.200 ^-0.643 0 0 0 0 1 force @a +particle witch ^0.645 ^0.220 ^-0.608 0 0 0 0 1 force @a +particle witch ^0.683 ^0.240 ^-0.570 0 0 0 0 1 force @a +particle witch ^0.718 ^0.260 ^-0.530 0 0 0 0 1 force @a +particle witch ^0.752 ^0.280 ^-0.488 0 0 0 0 1 force @a +particle witch ^0.783 ^0.300 ^-0.444 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.90 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f43.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f43.mcfunction new file mode 100644 index 0000000..4261042 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f43.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.811 ^0.320 ^-0.398 0 0 0 0 1 force @a +particle witch ^0.837 ^0.340 ^-0.350 0 0 0 0 1 force @a +particle witch ^0.860 ^0.360 ^-0.300 0 0 0 0 1 force @a +particle witch ^0.879 ^0.380 ^-0.249 0 0 0 0 1 force @a +particle witch ^0.896 ^0.400 ^-0.197 0 0 0 0 1 force @a +particle witch ^0.910 ^0.420 ^-0.143 0 0 0 0 1 force @a +particle witch ^0.920 ^0.440 ^-0.089 0 0 0 0 1 force @a +particle witch ^0.928 ^0.460 ^-0.033 0 0 0 0 1 force @a +particle witch ^0.931 ^0.480 ^0.022 0 0 0 0 1 force @a +particle witch ^0.932 ^0.500 ^0.079 0 0 0 0 1 force @a +particle witch ^0.929 ^0.520 ^0.135 0 0 0 0 1 force @a +particle witch ^0.923 ^0.540 ^0.191 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.92 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f44.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f44.mcfunction new file mode 100644 index 0000000..c2b4a0d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f44.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.913 ^0.560 ^0.247 0 0 0 0 1 force @a +particle witch ^0.900 ^0.580 ^0.302 0 0 0 0 1 force @a +particle witch ^0.884 ^0.600 ^0.357 0 0 0 0 1 force @a +particle witch ^0.864 ^0.620 ^0.411 0 0 0 0 1 force @a +particle witch ^0.841 ^0.640 ^0.464 0 0 0 0 1 force @a +particle witch ^0.815 ^0.660 ^0.515 0 0 0 0 1 force @a +particle witch ^0.785 ^0.680 ^0.565 0 0 0 0 1 force @a +particle witch ^0.753 ^0.700 ^0.614 0 0 0 0 1 force @a +particle witch ^0.717 ^0.720 ^0.660 0 0 0 0 1 force @a +particle witch ^0.679 ^0.740 ^0.705 0 0 0 0 1 force @a +particle witch ^0.638 ^0.760 ^0.747 0 0 0 0 1 force @a +particle witch ^0.594 ^0.780 ^0.787 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.94 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f45.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f45.mcfunction new file mode 100644 index 0000000..cf50ddb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f45.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.548 ^0.800 ^0.824 0 0 0 0 1 force @a +particle witch ^0.499 ^0.820 ^0.859 0 0 0 0 1 force @a +particle witch ^0.449 ^0.840 ^0.890 0 0 0 0 1 force @a +particle witch ^0.396 ^0.860 ^0.919 0 0 0 0 1 force @a +particle witch ^0.341 ^0.880 ^0.944 0 0 0 0 1 force @a +particle witch ^0.285 ^0.900 ^0.967 0 0 0 0 1 force @a +particle witch ^0.227 ^0.920 ^0.986 0 0 0 0 1 force @a +particle witch ^0.168 ^0.940 ^1.001 0 0 0 0 1 force @a +particle witch ^0.109 ^0.960 ^1.013 0 0 0 0 1 force @a +particle witch ^0.048 ^0.980 ^1.022 0 0 0 0 1 force @a +particle witch ^-0.014 ^1.000 ^1.026 0 0 0 0 1 force @a +particle witch ^-0.075 ^1.020 ^1.027 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.96 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f46.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f46.mcfunction new file mode 100644 index 0000000..ae67ab9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f46.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.137 ^1.040 ^1.025 0 0 0 0 1 force @a +particle witch ^-0.199 ^1.060 ^1.018 0 0 0 0 1 force @a +particle witch ^-0.261 ^1.080 ^1.008 0 0 0 0 1 force @a +particle witch ^-0.322 ^1.100 ^0.994 0 0 0 0 1 force @a +particle witch ^-0.383 ^1.120 ^0.977 0 0 0 0 1 force @a +particle witch ^-0.442 ^1.140 ^0.955 0 0 0 0 1 force @a +particle witch ^-0.500 ^1.160 ^0.931 0 0 0 0 1 force @a +particle witch ^-0.557 ^1.180 ^0.902 0 0 0 0 1 force @a +particle witch ^-0.612 ^1.200 ^0.870 0 0 0 0 1 force @a +particle witch ^-0.666 ^1.220 ^0.835 0 0 0 0 1 force @a +particle witch ^-0.717 ^1.240 ^0.796 0 0 0 0 1 force @a +particle witch ^-0.767 ^1.260 ^0.755 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.98 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f47.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f47.mcfunction new file mode 100644 index 0000000..4c90ea0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f47.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.813 ^1.280 ^0.710 0 0 0 0 1 force @a +particle witch ^-0.857 ^1.300 ^0.662 0 0 0 0 1 force @a +particle witch ^-0.899 ^1.320 ^0.612 0 0 0 0 1 force @a +particle witch ^-0.937 ^1.340 ^0.559 0 0 0 0 1 force @a +particle witch ^-0.972 ^1.360 ^0.503 0 0 0 0 1 force @a +particle witch ^-1.004 ^1.380 ^0.445 0 0 0 0 1 force @a +particle witch ^-1.033 ^1.400 ^0.386 0 0 0 0 1 force @a +particle witch ^-1.058 ^1.420 ^0.324 0 0 0 0 1 force @a +particle witch ^-1.079 ^1.440 ^0.261 0 0 0 0 1 force @a +particle witch ^-1.097 ^1.460 ^0.197 0 0 0 0 1 force @a +particle witch ^-1.110 ^1.480 ^0.131 0 0 0 0 1 force @a +particle witch ^-1.120 ^1.500 ^0.064 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f48.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f48.mcfunction new file mode 100644 index 0000000..5d139b6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f48.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.126 ^1.520 ^-0.003 0 0 0 0 1 force @a +particle witch ^-1.128 ^1.540 ^-0.071 0 0 0 0 1 force @a +particle witch ^-1.125 ^1.560 ^-0.139 0 0 0 0 1 force @a +particle witch ^-1.119 ^1.580 ^-0.206 0 0 0 0 1 force @a +particle witch ^-1.108 ^1.600 ^-0.274 0 0 0 0 1 force @a +particle witch ^-1.093 ^1.620 ^-0.341 0 0 0 0 1 force @a +particle witch ^-1.075 ^1.640 ^-0.408 0 0 0 0 1 force @a +particle witch ^-1.052 ^1.660 ^-0.473 0 0 0 0 1 force @a +particle witch ^-1.025 ^1.680 ^-0.537 0 0 0 0 1 force @a +particle witch ^-0.995 ^1.700 ^-0.600 0 0 0 0 1 force @a +particle witch ^-0.960 ^1.720 ^-0.660 0 0 0 0 1 force @a +particle witch ^-0.922 ^1.740 ^-0.719 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.02 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f49.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f49.mcfunction new file mode 100644 index 0000000..fec3e8a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f49.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.880 ^1.760 ^-0.776 0 0 0 0 1 force @a +particle witch ^-0.835 ^1.780 ^-0.830 0 0 0 0 1 force @a +particle witch ^-0.786 ^1.800 ^-0.882 0 0 0 0 1 force @a +particle witch ^-0.734 ^1.820 ^-0.930 0 0 0 0 1 force @a +particle witch ^-0.680 ^1.840 ^-0.976 0 0 0 0 1 force @a +particle witch ^-0.622 ^1.860 ^-1.018 0 0 0 0 1 force @a +particle witch ^-0.562 ^1.880 ^-1.057 0 0 0 0 1 force @a +particle witch ^-0.499 ^1.900 ^-1.093 0 0 0 0 1 force @a +particle witch ^-0.434 ^1.920 ^-1.125 0 0 0 0 1 force @a +particle witch ^-0.367 ^1.940 ^-1.152 0 0 0 0 1 force @a +particle witch ^-0.298 ^1.960 ^-1.176 0 0 0 0 1 force @a +particle witch ^-0.228 ^1.980 ^-1.196 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.04 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f5.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f5.mcfunction new file mode 100644 index 0000000..b8c4e65 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f5.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.011 ^1.200 ^-0.005 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.220 ^-0.006 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.240 ^-0.007 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.260 ^-0.008 0 0 0 0 1 force @a +particle witch ^-0.011 ^1.280 ^-0.009 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.300 ^-0.010 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.320 ^-0.011 0 0 0 0 1 force @a +particle witch ^-0.010 ^1.340 ^-0.012 0 0 0 0 1 force @a +particle witch ^-0.009 ^1.360 ^-0.013 0 0 0 0 1 force @a +particle witch ^-0.009 ^1.380 ^-0.014 0 0 0 0 1 force @a +particle witch ^-0.008 ^1.400 ^-0.014 0 0 0 0 1 force @a +particle witch ^-0.007 ^1.420 ^-0.015 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.18 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f50.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f50.mcfunction new file mode 100644 index 0000000..7a7dab3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f50.mcfunction @@ -0,0 +1,17 @@ + +particle witch ^-0.156 ^2.000 ^-1.212 0 0 0 0 1 force @a +particle witch ^-0.084 ^2.020 ^-1.223 0 0 0 0 1 force @a +particle witch ^-0.010 ^2.040 ^-1.230 0 0 0 0 1 force @a +particle witch ^0.064 ^2.060 ^-1.232 0 0 0 0 1 force @a +particle witch ^0.138 ^2.080 ^-1.230 0 0 0 0 1 force @a +particle witch ^0.212 ^2.100 ^-1.224 0 0 0 0 1 force @a +particle witch ^0.286 ^2.120 ^-1.213 0 0 0 0 1 force @a +particle witch ^0.360 ^2.140 ^-1.197 0 0 0 0 1 force @a +particle witch ^0.432 ^2.160 ^-1.178 0 0 0 0 1 force @a +particle witch ^0.504 ^2.180 ^-1.153 0 0 0 0 1 force @a +particle witch ^0.574 ^2.200 ^-1.125 0 0 0 0 1 force @a +particle witch ^0.642 ^2.220 ^-1.092 0 0 0 0 1 force @a + +particle minecraft:portal ~ ~0.5 ~ 0 0 0 10 10000 force + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.06 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f51.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f51.mcfunction new file mode 100644 index 0000000..c47f8a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f51.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.709 ^2.240 ^-1.055 0 0 0 0 1 force @a +particle witch ^0.773 ^2.260 ^-1.014 0 0 0 0 1 force @a +particle witch ^0.835 ^2.280 ^-0.969 0 0 0 0 1 force @a +particle witch ^0.895 ^2.300 ^-0.920 0 0 0 0 1 force @a +particle witch ^0.952 ^2.320 ^-0.867 0 0 0 0 1 force @a +particle witch ^1.005 ^2.340 ^-0.811 0 0 0 0 1 force @a +particle witch ^1.055 ^2.360 ^-0.752 0 0 0 0 1 force @a +particle witch ^1.102 ^2.380 ^-0.690 0 0 0 0 1 force @a +particle witch ^1.145 ^2.400 ^-0.624 0 0 0 0 1 force @a +particle witch ^1.184 ^2.420 ^-0.556 0 0 0 0 1 force @a +particle witch ^1.220 ^2.440 ^-0.486 0 0 0 0 1 force @a +particle witch ^1.251 ^2.460 ^-0.413 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.08 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f52.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f52.mcfunction new file mode 100644 index 0000000..de6510c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f52.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.277 ^2.480 ^-0.339 0 0 0 0 1 force @a +particle witch ^1.299 ^2.500 ^-0.262 0 0 0 0 1 force @a +particle witch ^1.317 ^2.520 ^-0.184 0 0 0 0 1 force @a +particle witch ^1.330 ^2.540 ^-0.105 0 0 0 0 1 force @a +particle witch ^1.338 ^2.560 ^-0.026 0 0 0 0 1 force @a +particle witch ^1.341 ^2.580 ^0.055 0 0 0 0 1 force @a +particle witch ^1.340 ^2.600 ^0.136 0 0 0 0 1 force @a +particle witch ^1.334 ^2.620 ^0.216 0 0 0 0 1 force @a +particle witch ^1.322 ^2.640 ^0.297 0 0 0 0 1 force @a +particle witch ^1.306 ^2.660 ^0.377 0 0 0 0 1 force @a +particle witch ^1.285 ^2.680 ^0.456 0 0 0 0 1 force @a +particle witch ^1.260 ^2.700 ^0.534 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.1 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f53.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f53.mcfunction new file mode 100644 index 0000000..c6eb8e9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f53.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.229 ^2.720 ^0.610 0 0 0 0 1 force @a +particle witch ^1.194 ^2.740 ^0.685 0 0 0 0 1 force @a +particle witch ^1.155 ^2.760 ^0.758 0 0 0 0 1 force @a +particle witch ^1.111 ^2.780 ^0.828 0 0 0 0 1 force @a +particle witch ^1.062 ^2.800 ^0.896 0 0 0 0 1 force @a +particle witch ^1.010 ^2.820 ^0.961 0 0 0 0 1 force @a +particle witch ^0.953 ^2.840 ^1.023 0 0 0 0 1 force @a +particle witch ^0.893 ^2.860 ^1.082 0 0 0 0 1 force @a +particle witch ^0.829 ^2.880 ^1.137 0 0 0 0 1 force @a +particle witch ^0.762 ^2.900 ^1.189 0 0 0 0 1 force @a +particle witch ^0.691 ^2.920 ^1.236 0 0 0 0 1 force @a +particle witch ^0.618 ^2.940 ^1.279 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.12 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f54.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f54.mcfunction new file mode 100644 index 0000000..5bd824f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f54.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.542 ^2.960 ^1.318 0 0 0 0 1 force @a +particle witch ^0.463 ^2.980 ^1.352 0 0 0 0 1 force @a +particle witch ^0.382 ^3.000 ^1.382 0 0 0 0 1 force @a +particle witch ^0.300 ^3.020 ^1.407 0 0 0 0 1 force @a +particle witch ^0.215 ^3.040 ^1.426 0 0 0 0 1 force @a +particle witch ^0.130 ^3.060 ^1.441 0 0 0 0 1 force @a +particle witch ^0.043 ^3.080 ^1.451 0 0 0 0 1 force @a +particle witch ^-0.044 ^3.100 ^1.455 0 0 0 0 1 force @a +particle witch ^-0.131 ^3.120 ^1.454 0 0 0 0 1 force @a +particle witch ^-0.219 ^3.140 ^1.448 0 0 0 0 1 force @a +particle witch ^-0.306 ^3.160 ^1.437 0 0 0 0 1 force @a +particle witch ^-0.393 ^3.180 ^1.420 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.14 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f55.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f55.mcfunction new file mode 100644 index 0000000..4876f03 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f55.mcfunction @@ -0,0 +1,20 @@ + +particle witch ^-0.479 ^3.200 ^1.398 0 0 0 0 1 force @a +particle witch ^-0.564 ^3.220 ^1.371 0 0 0 0 1 force @a +particle witch ^-0.647 ^3.240 ^1.339 0 0 0 0 1 force @a +particle witch ^-0.728 ^3.260 ^1.302 0 0 0 0 1 force @a +particle witch ^-0.807 ^3.280 ^1.259 0 0 0 0 1 force @a +particle witch ^-0.884 ^3.300 ^1.212 0 0 0 0 1 force @a +particle witch ^-0.958 ^3.320 ^1.161 0 0 0 0 1 force @a +particle witch ^-1.029 ^0.007 ^1.104 0 0 0 0 1 force @a +particle witch ^-1.097 ^0.027 ^1.044 0 0 0 0 1 force @a +particle witch ^-1.161 ^0.047 ^0.979 0 0 0 0 1 force @a +particle witch ^-1.221 ^0.067 ^0.911 0 0 0 0 1 force @a +particle witch ^-1.277 ^0.087 ^0.838 0 0 0 0 1 force @a + +function infinity_cave:mechanics/altar/sphere + +particle minecraft:end_rod ~ ~ ~ 0 0.5 0.5 1 100 force +playsound minecraft:entity.wither.shoot master @a[distance=..20] ~ ~ ~ 1 1.5 1 + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.16 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f56.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f56.mcfunction new file mode 100644 index 0000000..af098c0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f56.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.329 ^0.107 ^0.762 0 0 0 0 1 force @a +particle witch ^-1.377 ^0.127 ^0.683 0 0 0 0 1 force @a +particle witch ^-1.419 ^0.147 ^0.601 0 0 0 0 1 force @a +particle witch ^-1.457 ^0.167 ^0.517 0 0 0 0 1 force @a +particle witch ^-1.490 ^0.187 ^0.430 0 0 0 0 1 force @a +particle witch ^-1.518 ^0.207 ^0.340 0 0 0 0 1 force @a +particle witch ^-1.540 ^0.227 ^0.250 0 0 0 0 1 force @a +particle witch ^-1.557 ^0.247 ^0.157 0 0 0 0 1 force @a +particle witch ^-1.568 ^0.267 ^0.064 0 0 0 0 1 force @a +particle witch ^-1.573 ^0.287 ^-0.030 0 0 0 0 1 force @a +particle witch ^-1.573 ^0.307 ^-0.125 0 0 0 0 1 force @a +particle witch ^-1.568 ^0.327 ^-0.220 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.18 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f57.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f57.mcfunction new file mode 100644 index 0000000..d35dd64 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f57.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.556 ^0.347 ^-0.314 0 0 0 0 1 force @a +particle witch ^-1.539 ^0.367 ^-0.408 0 0 0 0 1 force @a +particle witch ^-1.516 ^0.387 ^-0.501 0 0 0 0 1 force @a +particle witch ^-1.488 ^0.407 ^-0.593 0 0 0 0 1 force @a +particle witch ^-1.454 ^0.427 ^-0.683 0 0 0 0 1 force @a +particle witch ^-1.414 ^0.447 ^-0.771 0 0 0 0 1 force @a +particle witch ^-1.369 ^0.467 ^-0.857 0 0 0 0 1 force @a +particle witch ^-1.319 ^0.487 ^-0.940 0 0 0 0 1 force @a +particle witch ^-1.264 ^0.507 ^-1.021 0 0 0 0 1 force @a +particle witch ^-1.204 ^0.527 ^-1.098 0 0 0 0 1 force @a +particle witch ^-1.139 ^0.547 ^-1.172 0 0 0 0 1 force @a +particle witch ^-1.070 ^0.567 ^-1.241 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.20 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f58.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f58.mcfunction new file mode 100644 index 0000000..c5ecfd5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f58.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.997 ^0.587 ^-1.307 0 0 0 0 1 force @a +particle witch ^-0.919 ^0.607 ^-1.368 0 0 0 0 1 force @a +particle witch ^-0.838 ^0.627 ^-1.425 0 0 0 0 1 force @a +particle witch ^-0.753 ^0.647 ^-1.477 0 0 0 0 1 force @a +particle witch ^-0.665 ^0.667 ^-1.524 0 0 0 0 1 force @a +particle witch ^-0.574 ^0.687 ^-1.565 0 0 0 0 1 force @a +particle witch ^-0.481 ^0.707 ^-1.602 0 0 0 0 1 force @a +particle witch ^-0.385 ^0.727 ^-1.632 0 0 0 0 1 force @a +particle witch ^-0.287 ^0.747 ^-1.657 0 0 0 0 1 force @a +particle witch ^-0.188 ^0.767 ^-1.676 0 0 0 0 1 force @a +particle witch ^-0.087 ^0.787 ^-1.689 0 0 0 0 1 force @a +particle witch ^0.014 ^0.807 ^-1.696 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.22 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f59.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f59.mcfunction new file mode 100644 index 0000000..45c7f49 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f59.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.116 ^0.827 ^-1.697 0 0 0 0 1 force @a +particle witch ^0.219 ^0.847 ^-1.692 0 0 0 0 1 force @a +particle witch ^0.321 ^0.867 ^-1.680 0 0 0 0 1 force @a +particle witch ^0.422 ^0.887 ^-1.663 0 0 0 0 1 force @a +particle witch ^0.522 ^0.907 ^-1.639 0 0 0 0 1 force @a +particle witch ^0.621 ^0.927 ^-1.609 0 0 0 0 1 force @a +particle witch ^0.719 ^0.947 ^-1.573 0 0 0 0 1 force @a +particle witch ^0.814 ^0.967 ^-1.532 0 0 0 0 1 force @a +particle witch ^0.907 ^0.987 ^-1.484 0 0 0 0 1 force @a +particle witch ^0.997 ^1.007 ^-1.431 0 0 0 0 1 force @a +particle witch ^1.084 ^1.027 ^-1.373 0 0 0 0 1 force @a +particle witch ^1.168 ^1.047 ^-1.309 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.24 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f6.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f6.mcfunction new file mode 100644 index 0000000..cb16ff1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f6.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.007 ^1.440 ^-0.016 0 0 0 0 1 force @a +particle witch ^-0.006 ^1.460 ^-0.017 0 0 0 0 1 force @a +particle witch ^-0.005 ^1.480 ^-0.018 0 0 0 0 1 force @a +particle witch ^-0.004 ^1.500 ^-0.019 0 0 0 0 1 force @a +particle witch ^-0.003 ^1.520 ^-0.019 0 0 0 0 1 force @a +particle witch ^-0.002 ^1.540 ^-0.020 0 0 0 0 1 force @a +particle witch ^-0.001 ^1.560 ^-0.021 0 0 0 0 1 force @a +particle witch ^0.001 ^1.580 ^-0.021 0 0 0 0 1 force @a +particle witch ^0.002 ^1.600 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.003 ^1.620 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.005 ^1.640 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.006 ^1.660 ^-0.023 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f60.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f60.mcfunction new file mode 100644 index 0000000..5ab3978 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f60.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.248 ^1.067 ^-1.240 0 0 0 0 1 force @a +particle witch ^1.323 ^1.087 ^-1.166 0 0 0 0 1 force @a +particle witch ^1.395 ^1.107 ^-1.088 0 0 0 0 1 force @a +particle witch ^1.462 ^1.127 ^-1.005 0 0 0 0 1 force @a +particle witch ^1.523 ^1.147 ^-0.918 0 0 0 0 1 force @a +particle witch ^1.580 ^1.167 ^-0.827 0 0 0 0 1 force @a +particle witch ^1.631 ^1.187 ^-0.733 0 0 0 0 1 force @a +particle witch ^1.677 ^1.207 ^-0.636 0 0 0 0 1 force @a +particle witch ^1.717 ^1.227 ^-0.535 0 0 0 0 1 force @a +particle witch ^1.751 ^1.247 ^-0.433 0 0 0 0 1 force @a +particle witch ^1.778 ^1.267 ^-0.328 0 0 0 0 1 force @a +particle witch ^1.800 ^1.287 ^-0.221 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.26 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f61.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f61.mcfunction new file mode 100644 index 0000000..d946414 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f61.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.815 ^1.307 ^-0.113 0 0 0 0 1 force @a +particle witch ^1.823 ^1.327 ^-0.004 0 0 0 0 1 force @a +particle witch ^1.825 ^1.347 ^0.105 0 0 0 0 1 force @a +particle witch ^1.820 ^1.367 ^0.215 0 0 0 0 1 force @a +particle witch ^1.809 ^1.387 ^0.325 0 0 0 0 1 force @a +particle witch ^1.791 ^1.407 ^0.434 0 0 0 0 1 force @a +particle witch ^1.767 ^1.427 ^0.542 0 0 0 0 1 force @a +particle witch ^1.736 ^1.447 ^0.649 0 0 0 0 1 force @a +particle witch ^1.698 ^1.467 ^0.754 0 0 0 0 1 force @a +particle witch ^1.655 ^1.487 ^0.857 0 0 0 0 1 force @a +particle witch ^1.605 ^1.507 ^0.957 0 0 0 0 1 force @a +particle witch ^1.548 ^1.527 ^1.054 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.28 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f62.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f62.mcfunction new file mode 100644 index 0000000..1faab7d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f62.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.486 ^1.547 ^1.148 0 0 0 0 1 force @a +particle witch ^1.419 ^1.567 ^1.239 0 0 0 0 1 force @a +particle witch ^1.346 ^1.587 ^1.325 0 0 0 0 1 force @a +particle witch ^1.267 ^1.607 ^1.407 0 0 0 0 1 force @a +particle witch ^1.184 ^1.627 ^1.484 0 0 0 0 1 force @a +particle witch ^1.095 ^1.647 ^1.557 0 0 0 0 1 force @a +particle witch ^1.003 ^1.667 ^1.624 0 0 0 0 1 force @a +particle witch ^0.906 ^1.687 ^1.686 0 0 0 0 1 force @a +particle witch ^0.805 ^1.707 ^1.742 0 0 0 0 1 force @a +particle witch ^0.701 ^1.727 ^1.792 0 0 0 0 1 force @a +particle witch ^0.594 ^1.747 ^1.835 0 0 0 0 1 force @a +particle witch ^0.484 ^1.767 ^1.873 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.3 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f63.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f63.mcfunction new file mode 100644 index 0000000..9f6cdfa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f63.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.372 ^1.787 ^1.903 0 0 0 0 1 force @a +particle witch ^0.258 ^1.807 ^1.927 0 0 0 0 1 force @a +particle witch ^0.142 ^1.827 ^1.944 0 0 0 0 1 force @a +particle witch ^0.026 ^1.847 ^1.955 0 0 0 0 1 force @a +particle witch ^-0.092 ^1.867 ^1.958 0 0 0 0 1 force @a +particle witch ^-0.210 ^1.887 ^1.954 0 0 0 0 1 force @a +particle witch ^-0.327 ^1.907 ^1.943 0 0 0 0 1 force @a +particle witch ^-0.444 ^1.927 ^1.925 0 0 0 0 1 force @a +particle witch ^-0.560 ^1.947 ^1.900 0 0 0 0 1 force @a +particle witch ^-0.675 ^1.967 ^1.868 0 0 0 0 1 force @a +particle witch ^-0.788 ^1.987 ^1.828 0 0 0 0 1 force @a +particle witch ^-0.899 ^2.007 ^1.783 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.32 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f64.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f64.mcfunction new file mode 100644 index 0000000..52d122a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f64.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.006 ^2.027 ^1.730 0 0 0 0 1 force @a +particle witch ^-1.111 ^2.047 ^1.671 0 0 0 0 1 force @a +particle witch ^-1.213 ^2.067 ^1.605 0 0 0 0 1 force @a +particle witch ^-1.310 ^2.087 ^1.534 0 0 0 0 1 force @a +particle witch ^-1.403 ^2.107 ^1.456 0 0 0 0 1 force @a +particle witch ^-1.492 ^2.127 ^1.373 0 0 0 0 1 force @a +particle witch ^-1.576 ^2.147 ^1.284 0 0 0 0 1 force @a +particle witch ^-1.654 ^2.167 ^1.191 0 0 0 0 1 force @a +particle witch ^-1.727 ^2.187 ^1.092 0 0 0 0 1 force @a +particle witch ^-1.794 ^2.207 ^0.989 0 0 0 0 1 force @a +particle witch ^-1.855 ^2.227 ^0.882 0 0 0 0 1 force @a +particle witch ^-1.909 ^2.247 ^0.771 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.34 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f65.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f65.mcfunction new file mode 100644 index 0000000..26693b3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f65.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.957 ^2.267 ^0.657 0 0 0 0 1 force @a +particle witch ^-1.998 ^2.287 ^0.540 0 0 0 0 1 force @a +particle witch ^-2.032 ^2.307 ^0.420 0 0 0 0 1 force @a +particle witch ^-2.059 ^2.327 ^0.298 0 0 0 0 1 force @a +particle witch ^-2.078 ^2.347 ^0.175 0 0 0 0 1 force @a +particle witch ^-2.090 ^2.367 ^0.050 0 0 0 0 1 force @a +particle witch ^-2.095 ^2.387 ^-0.076 0 0 0 0 1 force @a +particle witch ^-2.092 ^2.407 ^-0.202 0 0 0 0 1 force @a +particle witch ^-2.081 ^2.427 ^-0.328 0 0 0 0 1 force @a +particle witch ^-2.063 ^2.447 ^-0.453 0 0 0 0 1 force @a +particle witch ^-2.038 ^2.467 ^-0.577 0 0 0 0 1 force @a +particle witch ^-2.004 ^2.487 ^-0.700 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.36 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f66.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f66.mcfunction new file mode 100644 index 0000000..2b37341 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f66.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.964 ^2.507 ^-0.821 0 0 0 0 1 force @a +particle witch ^-1.916 ^2.527 ^-0.940 0 0 0 0 1 force @a +particle witch ^-1.861 ^2.547 ^-1.056 0 0 0 0 1 force @a +particle witch ^-1.798 ^2.567 ^-1.168 0 0 0 0 1 force @a +particle witch ^-1.730 ^2.587 ^-1.277 0 0 0 0 1 force @a +particle witch ^-1.654 ^2.607 ^-1.382 0 0 0 0 1 force @a +particle witch ^-1.572 ^2.627 ^-1.483 0 0 0 0 1 force @a +particle witch ^-1.484 ^2.647 ^-1.578 0 0 0 0 1 force @a +particle witch ^-1.390 ^2.667 ^-1.668 0 0 0 0 1 force @a +particle witch ^-1.291 ^2.687 ^-1.753 0 0 0 0 1 force @a +particle witch ^-1.186 ^2.707 ^-1.832 0 0 0 0 1 force @a +particle witch ^-1.077 ^2.727 ^-1.905 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.38 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f67.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f67.mcfunction new file mode 100644 index 0000000..e6021bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f67.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.963 ^2.747 ^-1.971 0 0 0 0 1 force @a +particle witch ^-0.846 ^2.767 ^-2.030 0 0 0 0 1 force @a +particle witch ^-0.724 ^2.787 ^-2.082 0 0 0 0 1 force @a +particle witch ^-0.599 ^2.807 ^-2.127 0 0 0 0 1 force @a +particle witch ^-0.472 ^2.827 ^-2.164 0 0 0 0 1 force @a +particle witch ^-0.342 ^2.847 ^-2.194 0 0 0 0 1 force @a +particle witch ^-0.210 ^2.867 ^-2.216 0 0 0 0 1 force @a +particle witch ^-0.077 ^2.887 ^-2.230 0 0 0 0 1 force @a +particle witch ^0.057 ^2.907 ^-2.237 0 0 0 0 1 force @a +particle witch ^0.191 ^2.927 ^-2.235 0 0 0 0 1 force @a +particle witch ^0.326 ^2.947 ^-2.225 0 0 0 0 1 force @a +particle witch ^0.460 ^2.967 ^-2.207 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.4 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f68.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f68.mcfunction new file mode 100644 index 0000000..f70fe7a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f68.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.592 ^2.987 ^-2.180 0 0 0 0 1 force @a +particle witch ^0.724 ^3.007 ^-2.146 0 0 0 0 1 force @a +particle witch ^0.853 ^3.027 ^-2.104 0 0 0 0 1 force @a +particle witch ^0.980 ^3.047 ^-2.054 0 0 0 0 1 force @a +particle witch ^1.104 ^3.067 ^-1.996 0 0 0 0 1 force @a +particle witch ^1.225 ^3.087 ^-1.931 0 0 0 0 1 force @a +particle witch ^1.342 ^3.107 ^-1.859 0 0 0 0 1 force @a +particle witch ^1.455 ^3.127 ^-1.779 0 0 0 0 1 force @a +particle witch ^1.563 ^3.147 ^-1.693 0 0 0 0 1 force @a +particle witch ^1.665 ^3.167 ^-1.600 0 0 0 0 1 force @a +particle witch ^1.763 ^3.187 ^-1.501 0 0 0 0 1 force @a +particle witch ^1.854 ^3.207 ^-1.396 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.42 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f69.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f69.mcfunction new file mode 100644 index 0000000..e367fc4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f69.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.939 ^3.227 ^-1.286 0 0 0 0 1 force @a +particle witch ^2.017 ^3.247 ^-1.170 0 0 0 0 1 force @a +particle witch ^2.089 ^3.267 ^-1.049 0 0 0 0 1 force @a +particle witch ^2.153 ^3.287 ^-0.924 0 0 0 0 1 force @a +particle witch ^2.210 ^3.307 ^-0.795 0 0 0 0 1 force @a +particle witch ^2.259 ^3.327 ^-0.663 0 0 0 0 1 force @a +particle witch ^2.358 ^0.013 ^0.094 0 0 0 0 1 force @a +particle witch ^2.354 ^0.033 ^0.236 0 0 0 0 1 force @a +particle witch ^2.341 ^0.053 ^0.378 0 0 0 0 1 force @a +particle witch ^2.320 ^0.073 ^0.519 0 0 0 0 1 force @a +particle witch ^2.290 ^0.093 ^0.659 0 0 0 0 1 force @a +particle witch ^2.252 ^0.113 ^0.797 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.44 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f7.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f7.mcfunction new file mode 100644 index 0000000..cbe1c2a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f7.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.008 ^1.680 ^-0.023 0 0 0 0 1 force @a +particle witch ^0.009 ^1.700 ^-0.023 0 0 0 0 1 force @a +particle witch ^0.011 ^1.720 ^-0.023 0 0 0 0 1 force @a +particle witch ^0.012 ^1.740 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.014 ^1.760 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.016 ^1.780 ^-0.022 0 0 0 0 1 force @a +particle witch ^0.017 ^1.800 ^-0.021 0 0 0 0 1 force @a +particle witch ^0.019 ^1.820 ^-0.021 0 0 0 0 1 force @a +particle witch ^0.021 ^1.840 ^-0.020 0 0 0 0 1 force @a +particle witch ^0.022 ^1.860 ^-0.019 0 0 0 0 1 force @a +particle witch ^0.024 ^1.880 ^-0.018 0 0 0 0 1 force @a +particle witch ^0.026 ^1.900 ^-0.017 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.22 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f70.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f70.mcfunction new file mode 100644 index 0000000..6376259 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f70.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^2.205 ^0.133 ^0.932 0 0 0 0 1 force @a +particle witch ^2.151 ^0.153 ^1.065 0 0 0 0 1 force @a +particle witch ^2.088 ^0.173 ^1.195 0 0 0 0 1 force @a +particle witch ^2.017 ^0.193 ^1.322 0 0 0 0 1 force @a +particle witch ^1.939 ^0.213 ^1.444 0 0 0 0 1 force @a +particle witch ^1.853 ^0.233 ^1.561 0 0 0 0 1 force @a +particle witch ^1.760 ^0.253 ^1.673 0 0 0 0 1 force @a +particle witch ^1.661 ^0.273 ^1.780 0 0 0 0 1 force @a +particle witch ^1.555 ^0.293 ^1.881 0 0 0 0 1 force @a +particle witch ^1.443 ^0.313 ^1.975 0 0 0 0 1 force @a +particle witch ^1.325 ^0.333 ^2.063 0 0 0 0 1 force @a +particle witch ^1.201 ^0.353 ^2.144 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.46 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f71.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f71.mcfunction new file mode 100644 index 0000000..108265f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f71.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.073 ^0.373 ^2.217 0 0 0 0 1 force @a +particle witch ^0.940 ^0.393 ^2.283 0 0 0 0 1 force @a +particle witch ^0.804 ^0.413 ^2.341 0 0 0 0 1 force @a +particle witch ^0.664 ^0.433 ^2.390 0 0 0 0 1 force @a +particle witch ^0.520 ^0.453 ^2.431 0 0 0 0 1 force @a +particle witch ^0.374 ^0.473 ^2.464 0 0 0 0 1 force @a +particle witch ^0.226 ^0.493 ^2.488 0 0 0 0 1 force @a +particle witch ^0.077 ^0.513 ^2.503 0 0 0 0 1 force @a +particle witch ^-0.073 ^0.533 ^2.509 0 0 0 0 1 force @a +particle witch ^-0.224 ^0.553 ^2.505 0 0 0 0 1 force @a +particle witch ^-0.375 ^0.573 ^2.493 0 0 0 0 1 force @a +particle witch ^-0.525 ^0.593 ^2.472 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.48 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f72.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f72.mcfunction new file mode 100644 index 0000000..f5489f1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f72.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-0.674 ^0.613 ^2.442 0 0 0 0 1 force @a +particle witch ^-0.821 ^0.633 ^2.403 0 0 0 0 1 force @a +particle witch ^-0.966 ^0.653 ^2.354 0 0 0 0 1 force @a +particle witch ^-1.108 ^0.673 ^2.298 0 0 0 0 1 force @a +particle witch ^-1.246 ^0.693 ^2.232 0 0 0 0 1 force @a +particle witch ^-1.381 ^0.713 ^2.158 0 0 0 0 1 force @a +particle witch ^-1.511 ^0.733 ^2.077 0 0 0 0 1 force @a +particle witch ^-1.637 ^0.753 ^1.987 0 0 0 0 1 force @a +particle witch ^-1.757 ^0.773 ^1.889 0 0 0 0 1 force @a +particle witch ^-1.872 ^0.793 ^1.785 0 0 0 0 1 force @a +particle witch ^-1.980 ^0.813 ^1.673 0 0 0 0 1 force @a +particle witch ^-2.081 ^0.833 ^1.555 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.5 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f73.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f73.mcfunction new file mode 100644 index 0000000..11244a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f73.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-2.176 ^0.853 ^1.430 0 0 0 0 1 force @a +particle witch ^-2.263 ^0.873 ^1.300 0 0 0 0 1 force @a +particle witch ^-2.342 ^0.893 ^1.165 0 0 0 0 1 force @a +particle witch ^-2.413 ^0.913 ^1.025 0 0 0 0 1 force @a +particle witch ^-2.476 ^0.933 ^0.880 0 0 0 0 1 force @a +particle witch ^-2.530 ^0.953 ^0.732 0 0 0 0 1 force @a +particle witch ^-2.575 ^0.973 ^0.580 0 0 0 0 1 force @a +particle witch ^-2.611 ^0.993 ^0.426 0 0 0 0 1 force @a +particle witch ^-2.638 ^1.013 ^0.269 0 0 0 0 1 force @a +particle witch ^-2.655 ^1.033 ^0.111 0 0 0 0 1 force @a +particle witch ^-2.663 ^1.053 ^-0.049 0 0 0 0 1 force @a +particle witch ^-2.662 ^1.073 ^-0.209 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.52 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f74.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f74.mcfunction new file mode 100644 index 0000000..f2bacdf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f74.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-2.650 ^1.093 ^-0.369 0 0 0 0 1 force @a +particle witch ^-2.629 ^1.113 ^-0.529 0 0 0 0 1 force @a +particle witch ^-2.599 ^1.133 ^-0.687 0 0 0 0 1 force @a +particle witch ^-2.558 ^1.153 ^-0.843 0 0 0 0 1 force @a +particle witch ^-2.509 ^1.173 ^-0.997 0 0 0 0 1 force @a +particle witch ^-2.450 ^1.193 ^-1.149 0 0 0 0 1 force @a +particle witch ^-2.382 ^1.213 ^-1.296 0 0 0 0 1 force @a +particle witch ^-2.305 ^1.233 ^-1.440 0 0 0 0 1 force @a +particle witch ^-2.220 ^1.253 ^-1.579 0 0 0 0 1 force @a +particle witch ^-2.126 ^1.273 ^-1.713 0 0 0 0 1 force @a +particle witch ^-2.024 ^1.293 ^-1.842 0 0 0 0 1 force @a +particle witch ^-1.914 ^1.313 ^-1.964 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.54 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f75.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f75.mcfunction new file mode 100644 index 0000000..b983fbb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f75.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.797 ^1.333 ^-2.080 0 0 0 0 1 force @a +particle witch ^-1.672 ^1.353 ^-2.189 0 0 0 0 1 force @a +particle witch ^-1.541 ^1.373 ^-2.290 0 0 0 0 1 force @a +particle witch ^-1.404 ^1.393 ^-2.384 0 0 0 0 1 force @a +particle witch ^-1.262 ^1.413 ^-2.469 0 0 0 0 1 force @a +particle witch ^-1.114 ^1.433 ^-2.546 0 0 0 0 1 force @a +particle witch ^-0.961 ^1.453 ^-2.614 0 0 0 0 1 force @a +particle witch ^-0.805 ^1.473 ^-2.673 0 0 0 0 1 force @a +particle witch ^-0.644 ^1.493 ^-2.722 0 0 0 0 1 force @a +particle witch ^-0.481 ^1.513 ^-2.762 0 0 0 0 1 force @a +particle witch ^-0.315 ^1.533 ^-2.792 0 0 0 0 1 force @a +particle witch ^-0.147 ^1.553 ^-2.812 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.56 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f76.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f76.mcfunction new file mode 100644 index 0000000..ed2f205 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f76.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.021 ^1.573 ^-2.822 0 0 0 0 1 force @a +particle witch ^0.191 ^1.593 ^-2.822 0 0 0 0 1 force @a +particle witch ^0.361 ^1.613 ^-2.812 0 0 0 0 1 force @a +particle witch ^0.530 ^1.633 ^-2.791 0 0 0 0 1 force @a +particle witch ^0.698 ^1.653 ^-2.760 0 0 0 0 1 force @a +particle witch ^0.864 ^1.673 ^-2.719 0 0 0 0 1 force @a +particle witch ^1.028 ^1.693 ^-2.669 0 0 0 0 1 force @a +particle witch ^1.188 ^1.713 ^-2.608 0 0 0 0 1 force @a +particle witch ^1.346 ^1.733 ^-2.537 0 0 0 0 1 force @a +particle witch ^1.499 ^1.753 ^-2.457 0 0 0 0 1 force @a +particle witch ^1.647 ^1.773 ^-2.368 0 0 0 0 1 force @a +particle witch ^1.790 ^1.793 ^-2.270 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.58 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f77.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f77.mcfunction new file mode 100644 index 0000000..b2b4aaa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f77.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^1.927 ^1.813 ^-2.163 0 0 0 0 1 force @a +particle witch ^2.058 ^1.833 ^-2.048 0 0 0 0 1 force @a +particle witch ^2.181 ^1.853 ^-1.926 0 0 0 0 1 force @a +particle witch ^2.298 ^1.873 ^-1.795 0 0 0 0 1 force @a +particle witch ^2.407 ^1.893 ^-1.658 0 0 0 0 1 force @a +particle witch ^2.507 ^1.913 ^-1.514 0 0 0 0 1 force @a +particle witch ^2.599 ^1.933 ^-1.364 0 0 0 0 1 force @a +particle witch ^2.682 ^1.953 ^-1.208 0 0 0 0 1 force @a +particle witch ^2.755 ^1.973 ^-1.047 0 0 0 0 1 force @a +particle witch ^2.819 ^1.993 ^-0.882 0 0 0 0 1 force @a +particle witch ^2.873 ^2.013 ^-0.713 0 0 0 0 1 force @a +particle witch ^2.917 ^2.033 ^-0.540 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.6 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f78.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f78.mcfunction new file mode 100644 index 0000000..35a1037 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f78.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^2.950 ^2.053 ^-0.365 0 0 0 0 1 force @a +particle witch ^2.973 ^2.073 ^-0.188 0 0 0 0 1 force @a +particle witch ^2.986 ^2.093 ^-0.010 0 0 0 0 1 force @a +particle witch ^2.987 ^2.113 ^0.170 0 0 0 0 1 force @a +particle witch ^2.978 ^2.133 ^0.349 0 0 0 0 1 force @a +particle witch ^2.958 ^2.153 ^0.529 0 0 0 0 1 force @a +particle witch ^2.927 ^2.173 ^0.706 0 0 0 0 1 force @a +particle witch ^2.886 ^2.193 ^0.883 0 0 0 0 1 force @a +particle witch ^2.833 ^2.213 ^1.056 0 0 0 0 1 force @a +particle witch ^2.771 ^2.233 ^1.227 0 0 0 0 1 force @a +particle witch ^2.698 ^2.253 ^1.394 0 0 0 0 1 force @a +particle witch ^2.615 ^2.273 ^1.556 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.62 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f79.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f79.mcfunction new file mode 100644 index 0000000..3302e4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f79.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^2.522 ^2.293 ^1.714 0 0 0 0 1 force @a +particle witch ^2.420 ^2.313 ^1.866 0 0 0 0 1 force @a +particle witch ^2.309 ^2.333 ^2.012 0 0 0 0 1 force @a +particle witch ^2.189 ^2.353 ^2.151 0 0 0 0 1 force @a +particle witch ^2.060 ^2.373 ^2.283 0 0 0 0 1 force @a +particle witch ^1.923 ^2.393 ^2.408 0 0 0 0 1 force @a +particle witch ^1.779 ^2.413 ^2.524 0 0 0 0 1 force @a +particle witch ^1.628 ^2.433 ^2.632 0 0 0 0 1 force @a +particle witch ^1.470 ^2.453 ^2.730 0 0 0 0 1 force @a +particle witch ^1.307 ^2.473 ^2.820 0 0 0 0 1 force @a +particle witch ^1.138 ^2.493 ^2.899 0 0 0 0 1 force @a +particle witch ^0.964 ^2.513 ^2.968 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.64 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f8.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f8.mcfunction new file mode 100644 index 0000000..927be78 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f8.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.027 ^1.920 ^-0.016 0 0 0 0 1 force @a +particle witch ^0.029 ^1.940 ^-0.014 0 0 0 0 1 force @a +particle witch ^0.030 ^1.960 ^-0.013 0 0 0 0 1 force @a +particle witch ^0.031 ^1.980 ^-0.011 0 0 0 0 1 force @a +particle witch ^0.033 ^2.000 ^-0.009 0 0 0 0 1 force @a +particle witch ^0.034 ^2.020 ^-0.008 0 0 0 0 1 force @a +particle witch ^0.035 ^2.040 ^-0.006 0 0 0 0 1 force @a +particle witch ^0.036 ^2.060 ^-0.004 0 0 0 0 1 force @a +particle witch ^0.037 ^2.080 ^-0.002 0 0 0 0 1 force @a +particle witch ^0.037 ^2.100 ^0.001 0 0 0 0 1 force @a +particle witch ^0.038 ^2.120 ^0.003 0 0 0 0 1 force @a +particle witch ^0.038 ^2.140 ^0.005 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.24 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f80.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f80.mcfunction new file mode 100644 index 0000000..7582ca6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f80.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.786 ^2.533 ^3.027 0 0 0 0 1 force @a +particle witch ^0.604 ^2.553 ^3.075 0 0 0 0 1 force @a +particle witch ^0.419 ^2.573 ^3.112 0 0 0 0 1 force @a +particle witch ^0.233 ^2.593 ^3.138 0 0 0 0 1 force @a +particle witch ^0.044 ^2.613 ^3.153 0 0 0 0 1 force @a +particle witch ^-0.145 ^2.633 ^3.157 0 0 0 0 1 force @a +particle witch ^-0.335 ^2.653 ^3.149 0 0 0 0 1 force @a +particle witch ^-0.524 ^2.673 ^3.129 0 0 0 0 1 force @a +particle witch ^-0.713 ^2.693 ^3.099 0 0 0 0 1 force @a +particle witch ^-0.899 ^2.713 ^3.057 0 0 0 0 1 force @a +particle witch ^-1.083 ^2.733 ^3.003 0 0 0 0 1 force @a +particle witch ^-1.264 ^2.753 ^2.939 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.66 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f81.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f81.mcfunction new file mode 100644 index 0000000..dcc0ced --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f81.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-1.441 ^2.773 ^2.864 0 0 0 0 1 force @a +particle witch ^-1.613 ^2.793 ^2.778 0 0 0 0 1 force @a +particle witch ^-1.780 ^2.813 ^2.682 0 0 0 0 1 force @a +particle witch ^-1.942 ^2.833 ^2.576 0 0 0 0 1 force @a +particle witch ^-2.097 ^2.853 ^2.460 0 0 0 0 1 force @a +particle witch ^-2.245 ^2.873 ^2.334 0 0 0 0 1 force @a +particle witch ^-2.386 ^2.893 ^2.200 0 0 0 0 1 force @a +particle witch ^-2.519 ^2.913 ^2.057 0 0 0 0 1 force @a +particle witch ^-2.643 ^2.933 ^1.906 0 0 0 0 1 force @a +particle witch ^-2.758 ^2.953 ^1.748 0 0 0 0 1 force @a +particle witch ^-2.864 ^2.973 ^1.582 0 0 0 0 1 force @a +particle witch ^-2.960 ^2.993 ^1.411 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.68 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f82.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f82.mcfunction new file mode 100644 index 0000000..8de2db6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f82.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^-3.045 ^3.013 ^1.233 0 0 0 0 1 force @a +particle witch ^-3.120 ^3.033 ^1.051 0 0 0 0 1 force @a +particle witch ^-3.184 ^3.053 ^0.863 0 0 0 0 1 force @a +particle witch ^-3.237 ^3.073 ^0.672 0 0 0 0 1 force @a +particle witch ^-3.278 ^3.093 ^0.478 0 0 0 0 1 force @a +particle witch ^-3.307 ^3.113 ^0.281 0 0 0 0 1 force @a +particle witch ^-3.325 ^3.133 ^0.082 0 0 0 0 1 force @a +particle witch ^-3.330 ^3.153 ^-0.117 0 0 0 0 1 force @a +particle witch ^-3.324 ^3.173 ^-0.317 0 0 0 0 1 force @a +particle witch ^-3.306 ^3.193 ^-0.517 0 0 0 0 1 force @a +particle witch ^-3.275 ^3.213 ^-0.716 0 0 0 0 1 force @a +particle witch ^-3.233 ^3.233 ^-0.913 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.7 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f83.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f83.mcfunction new file mode 100644 index 0000000..d4312bd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f83.mcfunction @@ -0,0 +1,12 @@ + +particle witch ^-3.179 ^3.253 ^-1.107 0 0 0 0 1 force @a +particle witch ^-3.113 ^3.273 ^-1.299 0 0 0 0 1 force @a +particle witch ^-3.036 ^3.293 ^-1.486 0 0 0 0 1 force @a +particle witch ^-2.947 ^3.313 ^-1.669 0 0 0 0 1 force @a + +function infinity_cave:mechanics/altar/sphere + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 1.72 1 + +particle minecraft:flash ~ ~ ~ 0 0 0 0 10 force +particle minecraft:end_rod ~ ~ ~ 0 0.5 0.5 1 100 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f9.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f9.mcfunction new file mode 100644 index 0000000..4430b04 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/frames/f9.mcfunction @@ -0,0 +1,15 @@ + +particle witch ^0.039 ^2.160 ^0.008 0 0 0 0 1 force @a +particle witch ^0.039 ^2.180 ^0.010 0 0 0 0 1 force @a +particle witch ^0.039 ^2.200 ^0.013 0 0 0 0 1 force @a +particle witch ^0.039 ^2.220 ^0.015 0 0 0 0 1 force @a +particle witch ^0.039 ^2.240 ^0.018 0 0 0 0 1 force @a +particle witch ^0.038 ^2.260 ^0.021 0 0 0 0 1 force @a +particle witch ^0.037 ^2.280 ^0.023 0 0 0 0 1 force @a +particle witch ^0.037 ^2.300 ^0.026 0 0 0 0 1 force @a +particle witch ^0.036 ^2.320 ^0.029 0 0 0 0 1 force @a +particle witch ^0.034 ^2.340 ^0.031 0 0 0 0 1 force @a +particle witch ^0.033 ^2.360 ^0.034 0 0 0 0 1 force @a +particle witch ^0.031 ^2.380 ^0.036 0 0 0 0 1 force @a + +playsound minecraft:block.amethyst_block.chime master @a[distance=..20] ~ ~ ~ 2 0.26 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_0.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_0.mcfunction new file mode 100644 index 0000000..548be94 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_0.mcfunction @@ -0,0 +1,7 @@ +execute if score @s ic.altar matches 1 run function infinity_cave:mechanics/altar/frames/f1 +execute if score @s ic.altar matches 2 run function infinity_cave:mechanics/altar/frames/f2 +execute if score @s ic.altar matches 3 run function infinity_cave:mechanics/altar/frames/f3 +execute if score @s ic.altar matches 4 run function infinity_cave:mechanics/altar/frames/f4 +execute if score @s ic.altar matches 5 run function infinity_cave:mechanics/altar/frames/f5 +execute if score @s ic.altar matches 6 run function infinity_cave:mechanics/altar/frames/f6 +execute if score @s ic.altar matches 7 run function infinity_cave:mechanics/altar/frames/f7 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_1.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_1.mcfunction new file mode 100644 index 0000000..42f0e83 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_1.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 8 run function infinity_cave:mechanics/altar/frames/f8 +execute if score @s ic.altar matches 9 run function infinity_cave:mechanics/altar/frames/f9 +execute if score @s ic.altar matches 10 run function infinity_cave:mechanics/altar/frames/f10 +execute if score @s ic.altar matches 11 run function infinity_cave:mechanics/altar/frames/f11 +execute if score @s ic.altar matches 12 run function infinity_cave:mechanics/altar/frames/f12 +execute if score @s ic.altar matches 13 run function infinity_cave:mechanics/altar/frames/f13 +execute if score @s ic.altar matches 14 run function infinity_cave:mechanics/altar/frames/f14 +execute if score @s ic.altar matches 15 run function infinity_cave:mechanics/altar/frames/f15 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_10.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_10.mcfunction new file mode 100644 index 0000000..7b72e4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_10.mcfunction @@ -0,0 +1,4 @@ +execute if score @s ic.altar matches 80 run function infinity_cave:mechanics/altar/frames/f80 +execute if score @s ic.altar matches 81 run function infinity_cave:mechanics/altar/frames/f81 +execute if score @s ic.altar matches 82 run function infinity_cave:mechanics/altar/frames/f82 +execute if score @s ic.altar matches 83 run function infinity_cave:mechanics/altar/frames/f83 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_2.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_2.mcfunction new file mode 100644 index 0000000..213df73 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_2.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 16 run function infinity_cave:mechanics/altar/frames/f16 +execute if score @s ic.altar matches 17 run function infinity_cave:mechanics/altar/frames/f17 +execute if score @s ic.altar matches 18 run function infinity_cave:mechanics/altar/frames/f18 +execute if score @s ic.altar matches 19 run function infinity_cave:mechanics/altar/frames/f19 +execute if score @s ic.altar matches 20 run function infinity_cave:mechanics/altar/frames/f20 +execute if score @s ic.altar matches 21 run function infinity_cave:mechanics/altar/frames/f21 +execute if score @s ic.altar matches 22 run function infinity_cave:mechanics/altar/frames/f22 +execute if score @s ic.altar matches 23 run function infinity_cave:mechanics/altar/frames/f23 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_3.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_3.mcfunction new file mode 100644 index 0000000..29d1e81 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_3.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 24 run function infinity_cave:mechanics/altar/frames/f24 +execute if score @s ic.altar matches 25 run function infinity_cave:mechanics/altar/frames/f25 +execute if score @s ic.altar matches 26 run function infinity_cave:mechanics/altar/frames/f26 +execute if score @s ic.altar matches 27 run function infinity_cave:mechanics/altar/frames/f27 +execute if score @s ic.altar matches 28 run function infinity_cave:mechanics/altar/frames/f28 +execute if score @s ic.altar matches 29 run function infinity_cave:mechanics/altar/frames/f29 +execute if score @s ic.altar matches 30 run function infinity_cave:mechanics/altar/frames/f30 +execute if score @s ic.altar matches 31 run function infinity_cave:mechanics/altar/frames/f31 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_4.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_4.mcfunction new file mode 100644 index 0000000..47b5256 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_4.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 32 run function infinity_cave:mechanics/altar/frames/f32 +execute if score @s ic.altar matches 33 run function infinity_cave:mechanics/altar/frames/f33 +execute if score @s ic.altar matches 34 run function infinity_cave:mechanics/altar/frames/f34 +execute if score @s ic.altar matches 35 run function infinity_cave:mechanics/altar/frames/f35 +execute if score @s ic.altar matches 36 run function infinity_cave:mechanics/altar/frames/f36 +execute if score @s ic.altar matches 37 run function infinity_cave:mechanics/altar/frames/f37 +execute if score @s ic.altar matches 38 run function infinity_cave:mechanics/altar/frames/f38 +execute if score @s ic.altar matches 39 run function infinity_cave:mechanics/altar/frames/f39 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_5.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_5.mcfunction new file mode 100644 index 0000000..ea90e81 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_5.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 40 run function infinity_cave:mechanics/altar/frames/f40 +execute if score @s ic.altar matches 41 run function infinity_cave:mechanics/altar/frames/f41 +execute if score @s ic.altar matches 42 run function infinity_cave:mechanics/altar/frames/f42 +execute if score @s ic.altar matches 43 run function infinity_cave:mechanics/altar/frames/f43 +execute if score @s ic.altar matches 44 run function infinity_cave:mechanics/altar/frames/f44 +execute if score @s ic.altar matches 45 run function infinity_cave:mechanics/altar/frames/f45 +execute if score @s ic.altar matches 46 run function infinity_cave:mechanics/altar/frames/f46 +execute if score @s ic.altar matches 47 run function infinity_cave:mechanics/altar/frames/f47 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_6.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_6.mcfunction new file mode 100644 index 0000000..7618a05 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_6.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 48 run function infinity_cave:mechanics/altar/frames/f48 +execute if score @s ic.altar matches 49 run function infinity_cave:mechanics/altar/frames/f49 +execute if score @s ic.altar matches 50 run function infinity_cave:mechanics/altar/frames/f50 +execute if score @s ic.altar matches 51 run function infinity_cave:mechanics/altar/frames/f51 +execute if score @s ic.altar matches 52 run function infinity_cave:mechanics/altar/frames/f52 +execute if score @s ic.altar matches 53 run function infinity_cave:mechanics/altar/frames/f53 +execute if score @s ic.altar matches 54 run function infinity_cave:mechanics/altar/frames/f54 +execute if score @s ic.altar matches 55 run function infinity_cave:mechanics/altar/frames/f55 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_7.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_7.mcfunction new file mode 100644 index 0000000..7819ff3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_7.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 56 run function infinity_cave:mechanics/altar/frames/f56 +execute if score @s ic.altar matches 57 run function infinity_cave:mechanics/altar/frames/f57 +execute if score @s ic.altar matches 58 run function infinity_cave:mechanics/altar/frames/f58 +execute if score @s ic.altar matches 59 run function infinity_cave:mechanics/altar/frames/f59 +execute if score @s ic.altar matches 60 run function infinity_cave:mechanics/altar/frames/f60 +execute if score @s ic.altar matches 61 run function infinity_cave:mechanics/altar/frames/f61 +execute if score @s ic.altar matches 62 run function infinity_cave:mechanics/altar/frames/f62 +execute if score @s ic.altar matches 63 run function infinity_cave:mechanics/altar/frames/f63 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_8.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_8.mcfunction new file mode 100644 index 0000000..eba6bd9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_8.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 64 run function infinity_cave:mechanics/altar/frames/f64 +execute if score @s ic.altar matches 65 run function infinity_cave:mechanics/altar/frames/f65 +execute if score @s ic.altar matches 66 run function infinity_cave:mechanics/altar/frames/f66 +execute if score @s ic.altar matches 67 run function infinity_cave:mechanics/altar/frames/f67 +execute if score @s ic.altar matches 68 run function infinity_cave:mechanics/altar/frames/f68 +execute if score @s ic.altar matches 69 run function infinity_cave:mechanics/altar/frames/f69 +execute if score @s ic.altar matches 70 run function infinity_cave:mechanics/altar/frames/f70 +execute if score @s ic.altar matches 71 run function infinity_cave:mechanics/altar/frames/f71 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_9.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_9.mcfunction new file mode 100644 index 0000000..cf818c1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l0/l0_9.mcfunction @@ -0,0 +1,8 @@ +execute if score @s ic.altar matches 72 run function infinity_cave:mechanics/altar/frames/f72 +execute if score @s ic.altar matches 73 run function infinity_cave:mechanics/altar/frames/f73 +execute if score @s ic.altar matches 74 run function infinity_cave:mechanics/altar/frames/f74 +execute if score @s ic.altar matches 75 run function infinity_cave:mechanics/altar/frames/f75 +execute if score @s ic.altar matches 76 run function infinity_cave:mechanics/altar/frames/f76 +execute if score @s ic.altar matches 77 run function infinity_cave:mechanics/altar/frames/f77 +execute if score @s ic.altar matches 78 run function infinity_cave:mechanics/altar/frames/f78 +execute if score @s ic.altar matches 79 run function infinity_cave:mechanics/altar/frames/f79 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l1/l1_0.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l1/l1_0.mcfunction new file mode 100644 index 0000000..f2004f2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/l1/l1_0.mcfunction @@ -0,0 +1,13 @@ +execute if score @s ic.altar matches 0..7 run function infinity_cave:mechanics/altar/l0/l0_0 +execute if score @s ic.altar matches 8..15 run function infinity_cave:mechanics/altar/l0/l0_1 +execute if score @s ic.altar matches 16..23 run function infinity_cave:mechanics/altar/l0/l0_2 +execute if score @s ic.altar matches 24..31 run function infinity_cave:mechanics/altar/l0/l0_3 +execute if score @s ic.altar matches 32..39 run function infinity_cave:mechanics/altar/l0/l0_4 +execute if score @s ic.altar matches 40..47 run function infinity_cave:mechanics/altar/l0/l0_5 +execute if score @s ic.altar matches 48..55 run function infinity_cave:mechanics/altar/l0/l0_6 +execute if score @s ic.altar matches 56..63 run function infinity_cave:mechanics/altar/l0/l0_7 +execute if score @s ic.altar matches 64..71 run function infinity_cave:mechanics/altar/l0/l0_8 +execute if score @s ic.altar matches 72..79 run function infinity_cave:mechanics/altar/l0/l0_9 +execute if score @s ic.altar matches 80..83 run function infinity_cave:mechanics/altar/l0/l0_10 + +scoreboard players remove @s ic.altar 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/spawn.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/spawn.mcfunction new file mode 100644 index 0000000..40d3794 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/spawn.mcfunction @@ -0,0 +1,9 @@ +advancement revoke @s only infinity_cave:mechanics/altar/spawn + +tag @s add ic.altar + +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" Teleporting you to surface... Step outside of altar to cancel..","color":"gray"}] + +execute as @e[type=interaction,distance=..5,limit=1] run function infinity_cave:mechanics/altar/entity + +advancement revoke @s only infinity_cave:mechanics/altar/tick \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/sphere.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/sphere.mcfunction new file mode 100644 index 0000000..ca91099 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/sphere.mcfunction @@ -0,0 +1,300 @@ +particle minecraft:end_rod ^0.17988903 ^2.98 ^0.295364074 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.094411588 ^2.96 ^-0.479047443 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.480770863 ^2.94 ^0.353920015 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.684246533 ^2.92 ^0.073530142 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.507703913 ^2.9 ^-0.576399808 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.016390037 ^2.88 ^0.839840084 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.624746786 ^2.86 ^-0.655813581 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.964408063 ^2.84 ^0.065704553 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.799963152 ^2.82 ^0.638481757 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.166870223 ^2.8 ^-1.06402741 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.623692359 ^2.78 ^0.939472107 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.141183892 ^2.76 ^-0.283018239 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.072948118 ^2.74 ^-0.584108157 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.41085275 ^2.719999999 ^1.196996247 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.522439605 ^2.7 ^-1.198773065 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.232013518 ^2.679999999 ^0.547487618 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.315289801 ^2.66 ^0.440922599 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.690274746 ^2.64 ^-1.246563587 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.341573717 ^2.62 ^1.420889649 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.240926039 ^2.6 ^-0.836721319 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.51406051 ^2.58 ^-0.22632007 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.984449812 ^2.559999999 ^1.215425261 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.097067723 ^2.54 ^-1.593417038 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.170483054 ^2.52 ^1.131180543 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.657721567 ^2.5 ^-0.044262898 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.274726891 ^2.48 ^-1.106648705 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.195720691 ^2.46 ^1.705899589 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.024615473 ^2.44 ^-1.412997924 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.737051592 ^2.42 ^0.355319246 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.544005392 ^2.4 ^0.925228268 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.521039721 ^2.38 ^-1.750462114 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.809485225 ^2.36 ^1.665873245 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.745606458 ^2.34 ^-0.690838687 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.77684847 ^2.32 ^-0.678534831 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.862659353 ^2.3 ^1.722155288 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.533669642 ^2.28 ^-1.875312431 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.679977201 ^2.26 ^1.03444507 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.95979216 ^2.24 ^0.376317272 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.204154343 ^2.219999999 ^-1.619139377 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.208029177 ^2.2 ^2.028971133 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.539906334 ^2.18 ^-1.3697768 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.08169924 ^2.16 ^-0.030467614 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.529349669 ^2.14 ^1.442736839 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.154608906 ^2.12 ^-2.117001674 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.328279013 ^2.099999999 ^1.680974379 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.134086571 ^2.08 ^-0.345361412 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.822833012 ^2.06 ^-1.197363693 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.539887266 ^2.04 ^2.132351223 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.050996135 ^2.02 ^-1.953204322 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.111386749 ^2 ^0.736237731 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.070479125 ^1.979999999 ^0.890346108 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.932436097 ^1.96 ^-2.070981151 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.716736494 ^1.94 ^2.17317482 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.011120677 ^1.92 ^-1.12649617 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.259948896 ^1.9 ^-0.5316305 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.316440925 ^1.88 ^1.931989464 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.336617593 ^1.859999999 ^-2.329611255 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.833967425 ^1.839999999 ^1.500321127 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.381135211 ^1.82 ^0.133398293 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.676233724 ^1.799999999 ^-1.717626416 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.076232038 ^1.779999999 ^2.413667059 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.58372468 ^1.76 ^-1.842339854 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.426534089 ^1.74 ^0.290400266 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.99688228 ^1.719999999 ^1.433199622 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.507173245 ^1.7 ^-2.41925098 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.26715897 ^1.68 ^2.138202082 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.391524504 ^1.66 ^-0.724576114 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.264754452 ^1.64 ^-1.086870404 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.940610973 ^1.62 ^2.343256493 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.893749736 ^1.6 ^-2.375123452 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.274545018 ^1.579999999 ^1.153275752 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.468035588 ^1.56 ^0.68934776 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.360583098 ^1.54 ^-2.185683792 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.475335864 ^1.519999999 ^2.542372084 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.077159789 ^1.5 ^-1.560579126 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.597179728 ^1.48 ^-0.253490556 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.751361862 ^1.46 ^1.949649103 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.025677047 ^1.44 ^-2.631680203 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.804011064 ^1.42 ^1.93109919 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.645277823 ^1.4 ^-0.206167984 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.098046158 ^1.38 ^-1.641280695 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.440054272 ^1.36 ^2.637565589 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.462659564 ^1.339999999 ^-2.250561486 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.608329516 ^1.319999999 ^0.673956334 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.387123121 ^1.3 ^1.269505102 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.905832151 ^1.279999999 ^-2.557551195 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.063318501 ^1.26 ^2.506342707 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.485408575 ^1.24 ^-1.133642014 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.606978822 ^1.219999999 ^-0.845731296 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.355367343 ^1.2 ^2.392274934 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.618490756 ^1.18 ^-2.687948881 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.27871608 ^1.16 ^1.569029326 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.748339596 ^1.14 ^0.383444209 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.772707191 ^1.12 ^-2.145485777 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.142522449 ^1.1 ^2.787415891 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.993519472 ^1.08 ^-1.964555958 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.804628191 ^1.06 ^0.102277631 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.142823522 ^1.04 ^1.823926355 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.348911004 ^1.02 ^-2.79961803 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.637979826 ^1 ^2.305866885 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.772221928 ^0.98 ^-0.595302932 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.452167409 ^0.959999999 ^-1.437106468 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.839367674 ^0.94 ^2.72247349 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.222873628 ^0.919999999 ^-2.580344956 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.650603719 ^0.9 ^1.079027306 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.689170773 ^0.88 ^0.996975702 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.312230473 ^0.859999999 ^-2.557039536 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.761219257 ^0.84 ^2.777579025 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.442400535 ^0.82 ^-1.536970925 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.844676849 ^0.8 ^-0.517507129 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.751305663 ^0.78 ^2.307493981 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.267821645 ^0.759999999 ^-2.889752856 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.153308105 ^0.74 ^1.953372521 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.91228401 ^0.72 ^0.014207097 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.141407029 ^0.699999999 ^-1.981003771 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.241248343 ^0.68 ^2.911940802 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.791904569 ^0.659999999 ^-2.313758418 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.888590683 ^0.64 ^0.49643113 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.468904608 ^0.62 ^1.587485443 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.749221088 ^0.599999999 ^-2.842299732 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.369359938 ^0.58 ^2.605466054 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.773332535 ^0.56 ^-0.997510224 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.722218315 ^0.54 ^-1.139266189 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.239221463 ^0.52 ^2.682150287 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.899051796 ^0.499999999 ^-2.81810324 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.569407112 ^0.48 ^1.472327102 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.892238677 ^0.459999999 ^0.650657692 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.694866846 ^0.439999999 ^-2.435944658 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.396101162 ^0.42 ^2.943926607 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.282785017 ^0.399999999 ^-1.90496524 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.972659626 ^0.38 ^-0.137458169 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.100848367 ^0.36 ^2.111122008 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.12315485 ^0.339999999 ^-2.978125734 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.922310923 ^0.32 ^2.280859644 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.960211373 ^0.299999999 ^-0.383599566 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.443474561 ^0.28 ^-1.717856826 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.641734555 ^0.26 ^2.919002699 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.499401504 ^0.239999999 ^-2.58731427 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.854785062 ^0.22 ^0.895434115 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.711157865 ^0.199999999 ^1.268709198 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.142606964 ^0.18 ^-2.768040702 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.027651219 ^0.16 ^2.813953264 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.659444709 ^0.139999999 ^-1.381214624 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.89482658 ^0.12 ^-0.778189615 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.609289362 ^0.099999999 ^2.529859234 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.522360024 ^0.079999999 ^-2.953089909 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.380326046 ^0.06 ^1.824951483 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.988247465 ^0.039999999 ^0.262253859 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.02642585 ^0.02 ^-2.212057476 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0 ^0 ^3 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.026425849 ^-0.02 ^-2.212057476 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.988247466 ^-0.040000001 ^0.262253859 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.380326045 ^-0.060000001 ^1.824951483 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.522360025 ^-0.08 ^-2.953089909 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.609289363 ^-0.100000001 ^2.529859234 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.894826579 ^-0.120000001 ^-0.778189615 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.65944471 ^-0.14 ^-1.381214624 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.027651218 ^-0.16 ^2.813953264 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.142606963 ^-0.180000001 ^-2.768040702 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.711157866 ^-0.2 ^1.268709198 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.854785061 ^-0.22 ^0.895434115 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.499401505 ^-0.240000001 ^-2.58731427 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.641734556 ^-0.26 ^2.919002699 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.44347456 ^-0.28 ^-1.717856826 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.960211374 ^-0.300000001 ^-0.383599566 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.922310922 ^-0.320000001 ^2.280859644 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.123154849 ^-0.34 ^-2.978125734 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.100848368 ^-0.360000001 ^2.111122008 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.972659625 ^-0.380000001 ^-0.137458169 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.282785018 ^-0.4 ^-1.90496524 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.396101161 ^-0.42 ^2.943926607 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.694866845 ^-0.440000001 ^-2.435944658 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.892238678 ^-0.46 ^0.650657692 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.569407111 ^-0.48 ^1.472327102 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.899051797 ^-0.500000001 ^-2.81810324 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.239221464 ^-0.52 ^2.682150287 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.722218314 ^-0.54 ^-1.139266189 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.773332536 ^-0.560000001 ^-0.997510224 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.369359937 ^-0.580000001 ^2.605466054 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.749221087 ^-0.6 ^-2.842299732 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.468904609 ^-0.620000001 ^1.587485443 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.888590682 ^-0.640000001 ^0.49643113 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.79190457 ^-0.66 ^-2.313758418 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.241248344 ^-0.68 ^2.911940802 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.141407028 ^-0.700000001 ^-1.981003771 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.912284011 ^-0.72 ^0.014207097 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.153308104 ^-0.74 ^1.953372521 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.267821646 ^-0.760000001 ^-2.889752856 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.751305664 ^-0.78 ^2.307493981 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.844676848 ^-0.8 ^-0.517507129 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.442400536 ^-0.820000001 ^-1.536970925 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.761219256 ^-0.840000001 ^2.777579025 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.312230472 ^-0.86 ^-2.557039536 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.689170774 ^-0.88 ^0.996975702 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.650603718 ^-0.900000001 ^1.079027306 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.222873629 ^-0.92 ^-2.580344956 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.839367675 ^-0.94 ^2.72247349 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.452167408 ^-0.960000001 ^-1.437106468 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.772221929 ^-0.98 ^-0.595302932 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.637979825 ^-1 ^2.305866885 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.348911003 ^-1.020000001 ^-2.79961803 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.142823523 ^-1.04 ^1.823926355 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.80462819 ^-1.06 ^0.102277631 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.993519473 ^-1.080000001 ^-1.964555958 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.142522448 ^-1.1 ^2.787415891 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.77270719 ^-1.12 ^-2.145485777 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.748339597 ^-1.14 ^0.383444209 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.278716079 ^-1.160000001 ^1.569029326 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.618490757 ^-1.18 ^-2.687948881 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.355367344 ^-1.2 ^2.392274934 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.606978821 ^-1.220000001 ^-0.845731296 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.485408576 ^-1.24 ^-1.133642014 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.0633185 ^-1.26 ^2.506342707 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.90583215 ^-1.280000001 ^-2.557551195 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.387123122 ^-1.3 ^1.269505102 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.608329515 ^-1.32 ^0.673956334 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.462659565 ^-1.340000001 ^-2.250561486 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.440054273 ^-1.36 ^2.637565589 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.098046157 ^-1.38 ^-1.641280695 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.645277824 ^-1.4 ^-0.206167984 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.804011063 ^-1.420000001 ^1.93109919 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.025677048 ^-1.44 ^-2.631680203 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.751361863 ^-1.46 ^1.949649103 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.597179727 ^-1.480000001 ^-0.253490556 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.07715979 ^-1.5 ^-1.560579126 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.475335863 ^-1.52 ^2.542372084 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.360583097 ^-1.540000001 ^-2.185683792 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.468035589 ^-1.56 ^0.68934776 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.274545017 ^-1.58 ^1.153275752 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.893749737 ^-1.600000001 ^-2.375123452 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.940610974 ^-1.62 ^2.343256493 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.264754451 ^-1.64 ^-1.086870404 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.391524505 ^-1.66 ^-0.724576114 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.267158969 ^-1.680000001 ^2.138202082 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.507173244 ^-1.7 ^-2.41925098 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.996882281 ^-1.72 ^1.433199622 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.426534088 ^-1.740000001 ^0.290400266 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.583724681 ^-1.76 ^-1.842339854 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.076232039 ^-1.78 ^2.413667059 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.676233723 ^-1.800000001 ^-1.717626416 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.381135212 ^-1.82 ^0.133398293 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.833967424 ^-1.84 ^1.500321127 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.336617594 ^-1.860000001 ^-2.329611255 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.316440926 ^-1.88 ^1.931989464 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.259948895 ^-1.9 ^-0.5316305 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.011120678 ^-1.92 ^-1.12649617 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.716736493 ^-1.940000001 ^2.17317482 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.932436096 ^-1.96 ^-2.070981151 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.070479126 ^-1.98 ^0.890346108 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.111386748 ^-2 ^0.736237731 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.050996136 ^-2.02 ^-1.953204322 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.539887267 ^-2.04 ^2.132351223 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.822833011 ^-2.060000001 ^-1.197363693 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-2.134086572 ^-2.08 ^-0.345361412 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.328279012 ^-2.1 ^1.680974379 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.154608905 ^-2.12 ^-2.117001674 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.52934967 ^-2.140000001 ^1.442736839 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^2.081699239 ^-2.16 ^-0.030467614 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.539906335 ^-2.18 ^-1.3697768 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.208029176 ^-2.2 ^2.028971133 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.204154342 ^-2.22 ^-1.619139377 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.959792161 ^-2.24 ^0.376317272 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.6799772 ^-2.26 ^1.03444507 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.533669643 ^-2.280000001 ^-1.875312431 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.862659354 ^-2.3 ^1.722155288 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.776848469 ^-2.320000001 ^-0.678534831 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.745606459 ^-2.34 ^-0.690838687 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.809485224 ^-2.36 ^1.665873245 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.52103972 ^-2.38 ^-1.750462114 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.544005393 ^-2.400000001 ^0.925228268 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.737051591 ^-2.42 ^0.355319246 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.024615474 ^-2.44 ^-1.412997924 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.195720692 ^-2.46 ^1.705899589 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.27472689 ^-2.48 ^-1.106648705 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.657721568 ^-2.5 ^-0.044262898 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.170483053 ^-2.520000001 ^1.131180543 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.097067724 ^-2.54 ^-1.593417038 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.984449813 ^-2.56 ^1.215425261 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.514060509 ^-2.58 ^-0.22632007 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.24092604 ^-2.6 ^-0.836721319 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.341573716 ^-2.62 ^1.420889649 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.690274745 ^-2.64 ^-1.246563587 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.315289802 ^-2.66 ^0.440922599 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.232013517 ^-2.68 ^0.547487618 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.522439606 ^-2.7 ^-1.198773065 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.410852751 ^-2.72 ^1.196996247 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^1.072948117 ^-2.74 ^-0.584108157 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-1.141183893 ^-2.76 ^-0.283018239 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.623692358 ^-2.780000001 ^0.939472107 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.166870222 ^-2.8 ^-1.06402741 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.799963153 ^-2.82 ^0.638481757 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.964408062 ^-2.840000001 ^0.065704553 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.624746787 ^-2.860000001 ^-0.655813581 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.016390036 ^-2.88 ^0.839840084 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.507703912 ^-2.9 ^-0.576399808 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.684246534 ^-2.92 ^0.073530142 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0.480770862 ^-2.94 ^0.353920015 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.094411589 ^-2.96 ^-0.479047443 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^-0.179889031 ^-2.980000001 ^0.295364074 0 0 0 0.001 10 force @a +particle minecraft:end_rod ^0 ^-3 ^0 0 0 0 0.001 10 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/tick.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/tick.mcfunction new file mode 100644 index 0000000..e101a0b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/altar/tick.mcfunction @@ -0,0 +1,3 @@ +execute as @e[type=interaction,scores={ic.altar=1..}] at @s positioned ~ ~ ~ run function infinity_cave:mechanics/altar/l1/l1_0 + +advancement revoke @s[tag=ic.altar] only infinity_cave:mechanics/altar/tick \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/darkness_cleanse.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/darkness_cleanse.mcfunction new file mode 100644 index 0000000..32e1028 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/darkness_cleanse.mcfunction @@ -0,0 +1,7 @@ +effect clear @s darkness + +clear @s flint{ic:darkness_cleanse} 1 + +playsound particle.soul_escape player @s ~ ~ ~ 1 1 1 + +advancement revoke @s only infinity_cave:mechanics/darkness_cleanse \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/food/burnt_meat.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/food/burnt_meat.mcfunction new file mode 100644 index 0000000..50431eb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/food/burnt_meat.mcfunction @@ -0,0 +1,7 @@ +advancement revoke @s only infinity_cave:mechanics/food/burnt_meat + +effect give @s minecraft:strength 60 1 true + +effect give @s minecraft:strength 1 3 true + +effect clear @s fire_resistance \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/food/piglin_meat.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/food/piglin_meat.mcfunction new file mode 100644 index 0000000..dc79573 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/food/piglin_meat.mcfunction @@ -0,0 +1,5 @@ +advancement revoke @s only infinity_cave:mechanics/food/piglin_meat + +effect give @s minecraft:absorption 10 1 true +effect give @s minecraft:strength 10 1 true +effect give @s saturation 1 1 true \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/magic_spyglass/ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/magic_spyglass/ray.mcfunction new file mode 100644 index 0000000..26ca900 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/magic_spyglass/ray.mcfunction @@ -0,0 +1,4 @@ +execute store result score @s ic.data positioned ~-0.05 ~-0.05 ~-0.05 as @e[type=#infinity_cave:all_living,tag=!ic.raycast,dx=0,sort=nearest] run function infinity_cave:mechanics/magic_spyglass/select + +scoreboard players add #distance ic.int 1 +execute if score #hit ic.int matches 0 if score #distance ic.int matches ..4000 positioned ^ ^ ^0.01 run function infinity_cave:mechanics/magic_spyglass/ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/magic_spyglass/select.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/magic_spyglass/select.mcfunction new file mode 100644 index 0000000..864fc51 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/magic_spyglass/select.mcfunction @@ -0,0 +1,3 @@ +execute at @s run particle minecraft:dust 0.902 0.063 0.063 0.33 ~ ~ ~ 0.4 0.8 0.4 0 1 force + +data get entity @s Health \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/magic_spyglass/start.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/magic_spyglass/start.mcfunction new file mode 100644 index 0000000..45e2277 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/magic_spyglass/start.mcfunction @@ -0,0 +1,9 @@ +advancement revoke @s only infinity_cave:mechanics/magic_spyglass + +tag @s add ic.raycast +scoreboard players set #hit ic.int 0 +scoreboard players set #distance ic.int 0 +execute anchored eyes run function infinity_cave:mechanics/magic_spyglass/ray +tag @s remove ic.raycast + +title @s actionbar [{"text":"Health: ","color":"red"},{"score":{"name":"@s","objective":"ic.data"},"color":"green"}] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/_rc_check.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/_rc_check.mcfunction new file mode 100644 index 0000000..2c2c969 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/_rc_check.mcfunction @@ -0,0 +1,7 @@ +# Resets Rune Count +scoreboard players set %mainhand ic.int 0 +scoreboard players set %offhand ic.int 0 + +kill @e[type=minecraft:eye_of_ender,nbt={Item:{id:"minecraft:ender_eye",Count:1b,tag:{ic:rc}}},limit=1,sort=arbitrary] + +advancement revoke @s only infinity_cave:mechanics/rc/_rc_check \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/activate.mcfunction new file mode 100644 index 0000000..01223d4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/activate.mcfunction @@ -0,0 +1,11 @@ +execute if entity @s[predicate=infinity_cave:enchantlet/enchantlet_1] run function infinity_cave:mechanics/rc/enchant/tier_1/check + +execute if entity @s[predicate=infinity_cave:enchantlet/enchantlet_2] run function infinity_cave:mechanics/rc/enchant/tier_2/check + +execute if entity @s[predicate=infinity_cave:enchantlet/enchantlet_3] run function infinity_cave:mechanics/rc/enchant/tier_3/check + +execute if entity @s[predicate=infinity_cave:enchantlet/enchantlet_4] run function infinity_cave:mechanics/rc/enchant/tier_4/check + +execute if entity @s[predicate=infinity_cave:enchantlet/enchantlet_5] run function infinity_cave:mechanics/rc/enchant/tier_5/check + +execute if entity @s[predicate=infinity_cave:enchantlet/offhand] run function infinity_cave:mechanics/rc/enchant/offhand \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/offhand.mcfunction new file mode 100644 index 0000000..6c23e56 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/offhand.mcfunction @@ -0,0 +1,9 @@ +execute if entity @s[predicate=infinity_cave:enchantlet/off_1] run function infinity_cave:mechanics/rc/enchant/tier_1/offhand + +execute if entity @s[predicate=infinity_cave:enchantlet/off_2] run function infinity_cave:mechanics/rc/enchant/tier_2/offhand + +execute if entity @s[predicate=infinity_cave:enchantlet/off_3] run function infinity_cave:mechanics/rc/enchant/tier_3/offhand + +execute if entity @s[predicate=infinity_cave:enchantlet/off_4] run function infinity_cave:mechanics/rc/enchant/tier_4/offhand + +execute if entity @s[predicate=infinity_cave:enchantlet/off_5] run function infinity_cave:mechanics/rc/enchant/tier_5/offhand \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/check.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/check.mcfunction new file mode 100644 index 0000000..3da0c2e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/check.mcfunction @@ -0,0 +1,9 @@ +execute if entity @s[level=..5,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_1/not_enough + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=!infinity_cave:enchantlet/enchantable] run function infinity_cave:mechanics/rc/enchant/tier_1/not_enchantable + +execute if entity @s[level=6..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/too_much] run function infinity_cave:mechanics/rc/enchant/tier_1/much + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_1/is_enchanted + +execute if entity @s[level=6..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/too_much,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_1/enchant diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/enchant.mcfunction new file mode 100644 index 0000000..4fa0913 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/enchant.mcfunction @@ -0,0 +1,7 @@ +item modify entity @s[predicate=infinity_cave:enchantlet/enchantable] weapon.offhand infinity_cave:enchants/tier_1 + +xp add @s -6 levels + +execute at @s run function infinity_cave:mechanics/rc/enchant/tier_1/particles + +playsound block.enchantment_table.use player @s ~ ~ ~ 0.5 2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/is_enchanted.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/is_enchanted.mcfunction new file mode 100644 index 0000000..747532e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/is_enchanted.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is already enchanted!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/much.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/much.mcfunction new file mode 100644 index 0000000..b4c95a6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/much.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are holding more than one item!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enchantable.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enchantable.mcfunction new file mode 100644 index 0000000..fd7561e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enchantable.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is not enchantable!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enough.mcfunction new file mode 100644 index 0000000..ce94018 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/offhand.mcfunction new file mode 100644 index 0000000..8519bc0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/offhand.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You cannot use this in the offhand!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/particles.mcfunction new file mode 100644 index 0000000..b0d58d9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_1/particles.mcfunction @@ -0,0 +1,84 @@ +particle portal ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle portal ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle portal ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle portal ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle portal ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle portal ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle portal ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle portal ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle portal ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle portal ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle portal ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle portal ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle portal ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle portal ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle portal ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle portal ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle portal ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle portal ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle portal ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle portal ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle portal ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle portal ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle portal ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle portal ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle portal ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle portal ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle portal ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle portal ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle portal ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle portal ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle portal ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle portal ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle portal ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle portal ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle portal ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle portal ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle portal ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle portal ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle portal ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle portal ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle portal ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle portal ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle portal ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle portal ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle portal ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle portal ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle portal ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle portal ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle portal ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle portal ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle portal ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle portal ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle portal ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle portal ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle portal ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle portal ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle portal ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle portal ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle portal ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle portal ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle portal ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle portal ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle portal ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle portal ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle portal ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle portal ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle portal ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle portal ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle portal ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle portal ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle portal ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle portal ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle portal ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle portal ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle portal ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle portal ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle portal ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle portal ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle portal ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle portal ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle portal ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle portal ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/check.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/check.mcfunction new file mode 100644 index 0000000..872d1bf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/check.mcfunction @@ -0,0 +1,11 @@ +execute if entity @s[level=..9,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_2/not_enough + +execute if entity @s[predicate=!infinity_cave:enchantlet/enchantable] run function infinity_cave:mechanics/rc/enchant/tier_2/not_enchantable + +execute if entity @s[level=10..,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/too_much] run function infinity_cave:mechanics/rc/enchant/tier_2/much + +execute if entity @s[predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_2/is_enchanted + +execute if entity @s[level=10..,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/too_much,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_2/enchant + +execute if entity @s[predicate=infinity_cave:enchantlet/offhand] run function infinity_cave:mechanics/rc/enchant/tier_2/offhand diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/enchant.mcfunction new file mode 100644 index 0000000..66c7725 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/enchant.mcfunction @@ -0,0 +1,7 @@ +item modify entity @s[predicate=infinity_cave:enchantlet/enchantable] weapon.offhand infinity_cave:enchants/tier_2 + +xp add @s -10 levels + +execute at @s run function infinity_cave:mechanics/rc/enchant/tier_2/particles + +playsound block.enchantment_table.use player @s ~ ~ ~ 0.5 1.6 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/is_enchanted.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/is_enchanted.mcfunction new file mode 100644 index 0000000..3b9a105 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/is_enchanted.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is already enchanted!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/much.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/much.mcfunction new file mode 100644 index 0000000..48cbc3e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/much.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are holding more than one item!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enchantable.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enchantable.mcfunction new file mode 100644 index 0000000..4bf2db9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enchantable.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is not enchantable!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enough.mcfunction new file mode 100644 index 0000000..f1ae848 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/offhand.mcfunction new file mode 100644 index 0000000..fc31046 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/offhand.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You cannot use this in the offhand!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/particles.mcfunction new file mode 100644 index 0000000..0f4e2f1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_2/particles.mcfunction @@ -0,0 +1,84 @@ +particle happy_villager ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle happy_villager ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle happy_villager ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle happy_villager ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle happy_villager ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle happy_villager ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle happy_villager ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle happy_villager ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle happy_villager ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle happy_villager ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle happy_villager ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle happy_villager ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle happy_villager ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle happy_villager ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle happy_villager ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle happy_villager ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle happy_villager ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle happy_villager ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle happy_villager ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle happy_villager ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle happy_villager ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle happy_villager ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle happy_villager ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle happy_villager ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle happy_villager ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle happy_villager ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle happy_villager ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle happy_villager ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle happy_villager ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle happy_villager ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle happy_villager ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle happy_villager ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle happy_villager ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle happy_villager ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle happy_villager ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle happy_villager ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle happy_villager ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle happy_villager ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle happy_villager ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle happy_villager ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle happy_villager ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle happy_villager ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle happy_villager ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle happy_villager ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle happy_villager ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle happy_villager ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle happy_villager ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle happy_villager ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle happy_villager ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle happy_villager ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle happy_villager ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle happy_villager ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle happy_villager ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle happy_villager ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle happy_villager ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle happy_villager ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle happy_villager ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle happy_villager ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle happy_villager ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle happy_villager ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle happy_villager ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle happy_villager ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle happy_villager ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle happy_villager ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle happy_villager ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle happy_villager ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle happy_villager ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle happy_villager ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle happy_villager ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle happy_villager ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle happy_villager ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle happy_villager ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle happy_villager ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle happy_villager ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle happy_villager ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle happy_villager ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle happy_villager ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle happy_villager ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle happy_villager ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle happy_villager ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle happy_villager ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle happy_villager ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle happy_villager ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle happy_villager ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/check.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/check.mcfunction new file mode 100644 index 0000000..93f4fc5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/check.mcfunction @@ -0,0 +1,11 @@ +execute if entity @s[level=..15,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_3/not_enough + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=!infinity_cave:enchantlet/enchantable] run function infinity_cave:mechanics/rc/enchant/tier_3/not_enchantable + +execute if entity @s[level=16..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/too_much] run function infinity_cave:mechanics/rc/enchant/tier_3/much + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_3/is_enchanted + +execute if entity @s[level=16..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/too_much,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_3/enchant + +execute if entity @s[predicate=infinity_cave:enchantlet/offhand] run function infinity_cave:mechanics/rc/enchant/tier_3/offhand diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/enchant.mcfunction new file mode 100644 index 0000000..cac62fc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/enchant.mcfunction @@ -0,0 +1,7 @@ +item modify entity @s[predicate=infinity_cave:enchantlet/enchantable] weapon.offhand infinity_cave:enchants/tier_3 + +xp add @s -16 levels + +execute at @s run function infinity_cave:mechanics/rc/enchant/tier_3/particles + +playsound minecraft:block.respawn_anchor.charge player @s ~ ~ ~ 0.5 0 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/is_enchanted.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/is_enchanted.mcfunction new file mode 100644 index 0000000..8def9e6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/is_enchanted.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is already enchanted!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_3 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/much.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/much.mcfunction new file mode 100644 index 0000000..bdd859c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/much.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are holding more than one item!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_3 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enchantable.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enchantable.mcfunction new file mode 100644 index 0000000..03b73f8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enchantable.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is not enchantable!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_3 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enough.mcfunction new file mode 100644 index 0000000..edeb551 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_3 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/offhand.mcfunction new file mode 100644 index 0000000..03aec79 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/offhand.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You cannot use this in the offhand!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_3 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/particles.mcfunction new file mode 100644 index 0000000..6316d39 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_3/particles.mcfunction @@ -0,0 +1,84 @@ +particle minecraft:sculk_charge 1 ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle minecraft:sculk_charge 1 ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/check.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/check.mcfunction new file mode 100644 index 0000000..5ee6932 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/check.mcfunction @@ -0,0 +1,11 @@ +execute if entity @s[level=..21,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_4/not_enough + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=!infinity_cave:enchantlet/enchantable] run function infinity_cave:mechanics/rc/enchant/tier_4/not_enchantable + +execute if entity @s[level=22..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/too_much] run function infinity_cave:mechanics/rc/enchant/tier_4/much + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_4/is_enchanted + +execute if entity @s[level=22..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/too_much,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_4/enchant + +execute if entity @s[predicate=infinity_cave:enchantlet/offhand] run function infinity_cave:mechanics/rc/enchant/tier_4/offhand diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/enchant.mcfunction new file mode 100644 index 0000000..b9801c8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/enchant.mcfunction @@ -0,0 +1,7 @@ +item modify entity @s[predicate=infinity_cave:enchantlet/enchantable] weapon.offhand infinity_cave:enchants/tier_4 + +xp add @s -22 levels + +execute at @s run function infinity_cave:mechanics/rc/enchant/tier_4/particles + +playsound minecraft:entity.skeleton_horse.death player @s ~ ~ ~ 0.5 0.75 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/is_enchanted.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/is_enchanted.mcfunction new file mode 100644 index 0000000..a87c299 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/is_enchanted.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is already enchanted!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_4 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/much.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/much.mcfunction new file mode 100644 index 0000000..cb345af --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/much.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are holding more than one item!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_4 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enchantable.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enchantable.mcfunction new file mode 100644 index 0000000..c5a4bf9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enchantable.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is not enchantable!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_4 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enough.mcfunction new file mode 100644 index 0000000..18f3bd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_4 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/offhand.mcfunction new file mode 100644 index 0000000..1bfacd1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/offhand.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You cannot use this in the offhand!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_4 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/particles.mcfunction new file mode 100644 index 0000000..5377659 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_4/particles.mcfunction @@ -0,0 +1,84 @@ +particle flame ~0.100 ~0.100 ~1.750 0 0 0 0.02 3 force @a +particle flame ~0.413 ~0.100 ~1.701 0 0 0 0.02 3 force @a +particle flame ~0.802 ~0.100 ~1.555 0 0 0 0.02 3 force @a +particle flame ~1.146 ~0.100 ~1.322 0 0 0 0.02 3 force @a +particle flame ~1.426 ~0.100 ~1.015 0 0 0 0.02 3 force @a +particle flame ~1.625 ~0.100 ~0.650 0 0 0 0.02 3 force @a +particle flame ~1.732 ~0.100 ~0.248 0 0 0 0.02 3 force @a +particle flame ~1.742 ~0.100 ~-0.168 0 0 0 0.02 3 force @a +particle flame ~1.653 ~0.100 ~-0.574 0 0 0 0.02 3 force @a +particle flame ~1.471 ~0.100 ~-0.947 0 0 0 0.02 3 force @a +particle flame ~1.206 ~0.100 ~-1.268 0 0 0 0.02 3 force @a +particle flame ~0.873 ~0.100 ~-1.516 0 0 0 0.02 3 force @a +particle flame ~0.491 ~0.100 ~-1.680 0 0 0 0.02 3 force @a +particle flame ~0.081 ~0.100 ~-1.748 0 0 0 0.02 3 force @a +particle flame ~-0.333 ~0.100 ~-1.718 0 0 0 0.02 3 force @a +particle flame ~-0.729 ~0.100 ~-1.591 0 0 0 0.02 3 force @a +particle flame ~-1.084 ~0.100 ~-1.374 0 0 0 0.02 3 force @a +particle flame ~-1.377 ~0.100 ~-1.080 0 0 0 0.02 3 force @a +particle flame ~-1.593 ~0.100 ~-0.724 0 0 0 0.02 3 force @a +particle flame ~-1.719 ~0.100 ~-0.328 0 0 0 0.02 3 force @a +particle flame ~-1.748 ~0.100 ~0.087 0 0 0 0.02 3 force @a +particle flame ~-1.678 ~0.100 ~0.496 0 0 0 0.02 3 force @a +particle flame ~-1.514 ~0.100 ~0.878 0 0 0 0.02 3 force @a +particle flame ~-1.264 ~0.100 ~1.210 0 0 0 0.02 3 force @a +particle flame ~-0.943 ~0.100 ~1.474 0 0 0 0.02 3 force @a +particle flame ~-0.568 ~0.100 ~1.655 0 0 0 0.02 3 force @a +particle flame ~-0.162 ~0.100 ~1.742 0 0 0 0.02 3 force @a +particle flame ~0.254 ~0.100 ~1.732 0 0 0 0.02 3 force @a +particle flame ~0.655 ~0.100 ~1.623 0 0 0 0.02 3 force @a +particle flame ~1.019 ~0.100 ~1.423 0 0 0 0.02 3 force @a +particle flame ~1.326 ~0.100 ~1.142 0 0 0 0.02 3 force @a +particle flame ~1.558 ~0.100 ~0.797 0 0 0 0.02 3 force @a +particle flame ~1.702 ~0.100 ~0.407 0 0 0 0.02 3 force @a +particle flame ~1.750 ~0.100 ~-0.006 0 0 0 0.02 3 force @a +particle flame ~1.699 ~0.100 ~-0.418 0 0 0 0.02 3 force @a +particle flame ~1.553 ~0.100 ~-0.807 0 0 0 0.02 3 force @a +particle flame ~1.319 ~0.100 ~-1.151 0 0 0 0.02 3 force @a +particle flame ~1.010 ~0.100 ~-1.429 0 0 0 0.02 3 force @a +particle flame ~0.644 ~0.100 ~-1.627 0 0 0 0.02 3 force @a +particle flame ~0.243 ~0.100 ~-1.733 0 0 0 0.02 3 force @a +particle flame ~-0.173 ~0.100 ~-1.741 0 0 0 0.02 3 force @a +particle flame ~-0.579 ~0.100 ~-1.651 0 0 0 0.02 3 force @a +particle flame ~-0.952 ~0.100 ~-1.468 0 0 0 0.02 3 force @a +particle flame ~-1.271 ~0.100 ~-1.202 0 0 0 0.02 3 force @a +particle flame ~-1.519 ~0.100 ~-0.869 0 0 0 0.02 3 force @a +particle flame ~-1.681 ~0.100 ~-0.486 0 0 0 0.02 3 force @a +particle flame ~-1.748 ~0.100 ~-0.076 0 0 0 0.02 3 force @a +particle flame ~-1.717 ~0.100 ~0.339 0 0 0 0.02 3 force @a +particle flame ~-1.588 ~0.100 ~0.734 0 0 0 0.02 3 force @a +particle flame ~-1.370 ~0.100 ~1.088 0 0 0 0.02 3 force @a +particle flame ~-1.075 ~0.100 ~1.381 0 0 0 0.02 3 force @a +particle flame ~-0.719 ~0.100 ~1.595 0 0 0 0.02 3 force @a +particle flame ~-0.323 ~0.100 ~1.720 0 0 0 0.02 3 force @a +particle flame ~0.092 ~0.100 ~1.748 0 0 0 0.02 3 force @a +particle flame ~0.502 ~0.100 ~1.677 0 0 0 0.02 3 force @a +particle flame ~0.883 ~0.100 ~1.511 0 0 0 0.02 3 force @a +particle flame ~1.214 ~0.100 ~1.260 0 0 0 0.02 3 force @a +particle flame ~1.477 ~0.100 ~0.938 0 0 0 0.02 3 force @a +particle flame ~1.657 ~0.100 ~0.563 0 0 0 0.02 3 force @a +particle flame ~1.743 ~0.100 ~0.156 0 0 0 0.02 3 force @a +particle flame ~1.731 ~0.100 ~-0.259 0 0 0 0.02 3 force @a +particle flame ~1.621 ~0.100 ~-0.660 0 0 0 0.02 3 force @a +particle flame ~1.419 ~0.100 ~-1.024 0 0 0 0.02 3 force @a +particle flame ~1.138 ~0.100 ~-1.329 0 0 0 0.02 3 force @a +particle flame ~0.792 ~0.100 ~-1.560 0 0 0 0.02 3 force @a +particle flame ~0.402 ~0.100 ~-1.703 0 0 0 0.02 3 force @a +particle flame ~-0.011 ~0.100 ~-1.750 0 0 0 0.02 3 force @a +particle flame ~-0.423 ~0.100 ~-1.698 0 0 0 0.02 3 force @a +particle flame ~-0.812 ~0.100 ~-1.550 0 0 0 0.02 3 force @a +particle flame ~-1.155 ~0.100 ~-1.315 0 0 0 0.02 3 force @a +particle flame ~-1.432 ~0.100 ~-1.006 0 0 0 0.02 3 force @a +particle flame ~-1.629 ~0.100 ~-0.639 0 0 0 0.02 3 force @a +particle flame ~-1.734 ~0.100 ~-0.237 0 0 0 0.02 3 force @a +particle flame ~-1.741 ~0.100 ~0.179 0 0 0 0.02 3 force @a +particle flame ~-1.650 ~0.100 ~0.584 0 0 0 0.02 3 force @a +particle flame ~-1.465 ~0.100 ~0.957 0 0 0 0.02 3 force @a +particle flame ~-1.198 ~0.100 ~1.275 0 0 0 0.02 3 force @a +particle flame ~-0.864 ~0.100 ~1.522 0 0 0 0.02 3 force @a +particle flame ~-0.480 ~0.100 ~1.683 0 0 0 0.02 3 force @a +particle flame ~-0.070 ~0.100 ~1.749 0 0 0 0.02 3 force @a +particle flame ~0.344 ~0.100 ~1.716 0 0 0 0.02 3 force @a +particle flame ~0.739 ~0.100 ~1.586 0 0 0 0.02 3 force @a +particle flame ~1.093 ~0.100 ~1.367 0 0 0 0.02 3 force @a +particle flame ~1.384 ~0.100 ~1.071 0 0 0 0.02 3 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/check.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/check.mcfunction new file mode 100644 index 0000000..e3fc888 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/check.mcfunction @@ -0,0 +1,11 @@ +execute if entity @s[level=..29,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_5/not_enough + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=!infinity_cave:enchantlet/enchantable] run function infinity_cave:mechanics/rc/enchant/tier_5/not_enchantable + +execute if entity @s[level=30..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/too_much] run function infinity_cave:mechanics/rc/enchant/tier_5/much + +execute if entity @s[predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_5/is_enchanted + +execute if entity @s[level=30..,predicate=!infinity_cave:enchantlet/offhand,predicate=infinity_cave:enchantlet/enchantable,predicate=!infinity_cave:enchantlet/too_much,predicate=!infinity_cave:enchantlet/is_enchanted] run function infinity_cave:mechanics/rc/enchant/tier_5/enchant + +execute if entity @s[predicate=infinity_cave:enchantlet/offhand] run function infinity_cave:mechanics/rc/enchant/tier_5/offhand diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/enchant.mcfunction new file mode 100644 index 0000000..7813e32 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/enchant.mcfunction @@ -0,0 +1,7 @@ +item modify entity @s[predicate=infinity_cave:enchantlet/enchantable] weapon.offhand infinity_cave:enchants/tier_5 + +xp add @s -30 levels + +execute at @s run function infinity_cave:mechanics/rc/enchant/tier_5/particles + +playsound minecraft:ui.toast.challenge_complete player @s ~ ~ ~ 0.5 1.5 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/is_enchanted.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/is_enchanted.mcfunction new file mode 100644 index 0000000..d38dc5f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/is_enchanted.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is already enchanted!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/much.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/much.mcfunction new file mode 100644 index 0000000..b65d62b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/much.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are holding more than one item!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enchantable.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enchantable.mcfunction new file mode 100644 index 0000000..43594ad --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enchantable.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" That item is not enchantable!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enough.mcfunction new file mode 100644 index 0000000..63a57f3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/offhand.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/offhand.mcfunction new file mode 100644 index 0000000..40759fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/offhand.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You cannot use this in the offhand!","color":"gray"}] + +loot give @s loot infinity_cave:return/enchantlet_5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/particles.mcfunction new file mode 100644 index 0000000..2a2c5ff --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/enchant/tier_5/particles.mcfunction @@ -0,0 +1,85 @@ +particle flash ~ ~0.6 ~ 0 0 0 0 1 force @a +particle totem_of_undying ~0.100 ~0.100 ~1.750 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.413 ~0.100 ~1.701 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.802 ~0.100 ~1.555 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.146 ~0.100 ~1.322 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.426 ~0.100 ~1.015 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.625 ~0.100 ~0.650 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.732 ~0.100 ~0.248 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.742 ~0.100 ~-0.168 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.653 ~0.100 ~-0.574 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.471 ~0.100 ~-0.947 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.206 ~0.100 ~-1.268 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.873 ~0.100 ~-1.516 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.491 ~0.100 ~-1.680 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.081 ~0.100 ~-1.748 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.333 ~0.100 ~-1.718 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.729 ~0.100 ~-1.591 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.084 ~0.100 ~-1.374 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.377 ~0.100 ~-1.080 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.593 ~0.100 ~-0.724 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.719 ~0.100 ~-0.328 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.748 ~0.100 ~0.087 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.678 ~0.100 ~0.496 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.514 ~0.100 ~0.878 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.264 ~0.100 ~1.210 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.943 ~0.100 ~1.474 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.568 ~0.100 ~1.655 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.162 ~0.100 ~1.742 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.254 ~0.100 ~1.732 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.655 ~0.100 ~1.623 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.019 ~0.100 ~1.423 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.326 ~0.100 ~1.142 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.558 ~0.100 ~0.797 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.702 ~0.100 ~0.407 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.750 ~0.100 ~-0.006 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.699 ~0.100 ~-0.418 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.553 ~0.100 ~-0.807 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.319 ~0.100 ~-1.151 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.010 ~0.100 ~-1.429 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.644 ~0.100 ~-1.627 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.243 ~0.100 ~-1.733 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.173 ~0.100 ~-1.741 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.579 ~0.100 ~-1.651 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.952 ~0.100 ~-1.468 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.271 ~0.100 ~-1.202 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.519 ~0.100 ~-0.869 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.681 ~0.100 ~-0.486 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.748 ~0.100 ~-0.076 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.717 ~0.100 ~0.339 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.588 ~0.100 ~0.734 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.370 ~0.100 ~1.088 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.075 ~0.100 ~1.381 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.719 ~0.100 ~1.595 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.323 ~0.100 ~1.720 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.092 ~0.100 ~1.748 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.502 ~0.100 ~1.677 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.883 ~0.100 ~1.511 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.214 ~0.100 ~1.260 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.477 ~0.100 ~0.938 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.657 ~0.100 ~0.563 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.743 ~0.100 ~0.156 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.731 ~0.100 ~-0.259 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.621 ~0.100 ~-0.660 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.419 ~0.100 ~-1.024 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.138 ~0.100 ~-1.329 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.792 ~0.100 ~-1.560 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.402 ~0.100 ~-1.703 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.011 ~0.100 ~-1.750 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.423 ~0.100 ~-1.698 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.812 ~0.100 ~-1.550 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.155 ~0.100 ~-1.315 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.432 ~0.100 ~-1.006 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.629 ~0.100 ~-0.639 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.734 ~0.100 ~-0.237 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.741 ~0.100 ~0.179 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.650 ~0.100 ~0.584 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.465 ~0.100 ~0.957 0 1 0 0.2 5 force @a +particle totem_of_undying ~-1.198 ~0.100 ~1.275 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.864 ~0.100 ~1.522 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.480 ~0.100 ~1.683 0 1 0 0.2 5 force @a +particle totem_of_undying ~-0.070 ~0.100 ~1.749 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.344 ~0.100 ~1.716 0 1 0 0.2 5 force @a +particle totem_of_undying ~0.739 ~0.100 ~1.586 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.093 ~0.100 ~1.367 0 1 0 0.2 5 force @a +particle totem_of_undying ~1.384 ~0.100 ~1.071 0 1 0 0.2 5 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/activate.mcfunction new file mode 100644 index 0000000..d9e3e40 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/activate.mcfunction @@ -0,0 +1,4 @@ +execute at @s run function infinity_cave:mechanics/rc/fireball/particles + +execute in overworld positioned 0.0 0 0.0 run summon marker ^ ^ ^0.3 {Tags:["ic.fireball"]} +execute anchored eyes positioned ^ ^ ^1 run function infinity_cave:mechanics/rc/fireball/shootfacing \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/entity.mcfunction new file mode 100644 index 0000000..6249221 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/entity.mcfunction @@ -0,0 +1,10 @@ +data modify entity @s power set from entity @e[type=marker,tag=ic.fireball,limit=1] Pos +data modify entity @s Owner set from entity @p[tag=ic.shot_fireball] UUID + +particle minecraft:flame ~ ~ ~ 0.2 0.2 0.2 0.1 50 force + +execute on origin run tag @s remove ic.shot_fireball + +# clean up +tag @s remove ic.fireball +kill @e[tag=ic.fireball] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/particles.mcfunction new file mode 100644 index 0000000..c7c25f0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/particles.mcfunction @@ -0,0 +1,84 @@ +particle flame ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle flame ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle flame ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle flame ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle flame ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle flame ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle flame ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle flame ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle flame ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle flame ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle flame ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle flame ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle flame ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle flame ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle flame ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle flame ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle flame ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle flame ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle flame ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle flame ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle flame ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle flame ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle flame ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle flame ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle flame ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle flame ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle flame ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle flame ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle flame ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle flame ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle flame ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle flame ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle flame ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle flame ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle flame ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle flame ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle flame ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle flame ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle flame ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle flame ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle flame ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle flame ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle flame ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle flame ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle flame ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle flame ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle flame ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle flame ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle flame ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle flame ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle flame ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle flame ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle flame ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle flame ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle flame ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle flame ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle flame ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle flame ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle flame ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle flame ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle flame ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle flame ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle flame ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle flame ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle flame ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle flame ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle flame ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle flame ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle flame ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle flame ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle flame ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle flame ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle flame ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle flame ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle flame ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle flame ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle flame ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle flame ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle flame ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle flame ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle flame ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle flame ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle flame ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle flame ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/shootfacing.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/shootfacing.mcfunction new file mode 100644 index 0000000..8a635b3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/fireball/shootfacing.mcfunction @@ -0,0 +1,5 @@ +playsound minecraft:item.firecharge.use player @a[distance=..10] ~ ~ ~ 0.2 0.6 1 + +summon fireball ~ ~ ~ {HasVisualFire:0b,Glowing:0b,ExplosionPower:2b,Tags:["ic.fireball"],Item:{id:"minecraft:player_head",Count:1b,tag:{SkullOwner:{Id:[I;-549834925,-1196208197,-1888820469,-911071326],Properties:{textures:[{Value:"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTNlOTdmYWI0NzUzYjc1YmE1YjBjMDM4YmVkMzc3YjE2MmJhMjhiN2E1ZTI5MGFiZmQwMThhNTU4MWFjNTM4OCJ9fX0="}]}}}}} + +execute as @e[type=fireball,tag=ic.fireball,limit=1,sort=nearest] run function infinity_cave:mechanics/rc/fireball/entity \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/activate.mcfunction new file mode 100644 index 0000000..4772269 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/activate.mcfunction @@ -0,0 +1,4 @@ +execute at @s run function infinity_cave:mechanics/rc/ice_spark/particles + +execute in overworld positioned 0.0 0 0.0 run summon marker ^ ^ ^1.2 {Tags:["ic.ice_spark"]} +execute anchored eyes positioned ^ ^ ^1 run function infinity_cave:mechanics/rc/ice_spark/shootfacing \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/entity.mcfunction new file mode 100644 index 0000000..2c7a62f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/entity.mcfunction @@ -0,0 +1,10 @@ +data modify entity @s Motion set from entity @e[type=marker,tag=ic.ice_spark,limit=1] Pos +data modify entity @s Owner set from entity @p[tag=ic.shot_ice_spark] UUID + +particle minecraft:snowflake ~ ~ ~ 0.2 0.2 0.2 0.1 50 force + +execute on origin run tag @s remove ic.shot_ice_spark + +# clean up +tag @s remove ic.ice_spark +kill @e[tag=ic.ice_spark] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/particles.mcfunction new file mode 100644 index 0000000..b8ea6e7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/particles.mcfunction @@ -0,0 +1,84 @@ +particle snowflake ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle snowflake ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle snowflake ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle snowflake ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle snowflake ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle snowflake ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle snowflake ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle snowflake ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle snowflake ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle snowflake ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle snowflake ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle snowflake ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle snowflake ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle snowflake ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle snowflake ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle snowflake ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle snowflake ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle snowflake ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle snowflake ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle snowflake ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle snowflake ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle snowflake ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle snowflake ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle snowflake ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle snowflake ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle snowflake ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle snowflake ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle snowflake ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle snowflake ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle snowflake ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle snowflake ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle snowflake ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle snowflake ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle snowflake ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle snowflake ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle snowflake ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle snowflake ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle snowflake ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle snowflake ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle snowflake ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle snowflake ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle snowflake ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle snowflake ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle snowflake ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle snowflake ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle snowflake ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle snowflake ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle snowflake ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle snowflake ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle snowflake ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle snowflake ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle snowflake ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle snowflake ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle snowflake ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle snowflake ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle snowflake ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle snowflake ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle snowflake ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle snowflake ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle snowflake ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle snowflake ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle snowflake ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle snowflake ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle snowflake ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle snowflake ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle snowflake ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle snowflake ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle snowflake ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle snowflake ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle snowflake ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle snowflake ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle snowflake ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle snowflake ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle snowflake ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle snowflake ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle snowflake ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle snowflake ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle snowflake ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle snowflake ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle snowflake ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle snowflake ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle snowflake ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle snowflake ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle snowflake ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/shootfacing.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/shootfacing.mcfunction new file mode 100644 index 0000000..933078e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/ice_spark/shootfacing.mcfunction @@ -0,0 +1,5 @@ +playsound minecraft:entity.stray.death player @a[distance=..10] ~ ~ ~ 1 1.6 1 + +summon firework_rocket ~ ~ ~ {Life:0,LifeTime:100,ShotAtAngle:1b,Tags:["ic.ice_spark"],Passengers:[{id:"minecraft:potion",Item:{id:"minecraft:lingering_potion",Count:1b,tag:{CustomPotionColor:1703935,custom_potion_effects:[{id:"minecraft:slowness",amplifier:3b,duration:200},{id:"minecraft:weakness",amplifier:1b,duration:200}]}}}],FireworksItem:{id:"firework_rocket",Count:1,tag:{Fireworks:{Explosions:[{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]},{Type:4,Colors:[I;2226431]}]}}}} + +execute as @e[type=firework_rocket,tag=ic.ice_spark,limit=1,sort=nearest] run function infinity_cave:mechanics/rc/ice_spark/entity \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/activate.mcfunction new file mode 100644 index 0000000..5871513 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/activate.mcfunction @@ -0,0 +1,7 @@ +execute at @s run function infinity_cave:mechanics/rc/magic_repair/particles + +execute if entity @s[level=10..,predicate=infinity_cave:any_armor] run function infinity_cave:mechanics/rc/magic_repair/repair + +execute if entity @s[predicate=!infinity_cave:any_armor] run function infinity_cave:mechanics/rc/magic_repair/no_armor + +execute if entity @s[level=..9,predicate=infinity_cave:any_armor] run function infinity_cave:mechanics/rc/magic_repair/not_enough \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/no_armor.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/no_armor.mcfunction new file mode 100644 index 0000000..5d6dc15 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/no_armor.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You are wearing no fixable armor!","color":"gray"}] + +loot give @s loot infinity_cave:return/magic_repair \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/not_enough.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/not_enough.mcfunction new file mode 100644 index 0000000..6b76693 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/not_enough.mcfunction @@ -0,0 +1,3 @@ +tellraw @s ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" You do not have enough levels!","color":"gray"}] + +loot give @s loot infinity_cave:return/magic_repair \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/particles.mcfunction new file mode 100644 index 0000000..b0d58d9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/particles.mcfunction @@ -0,0 +1,84 @@ +particle portal ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle portal ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle portal ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle portal ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle portal ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle portal ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle portal ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle portal ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle portal ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle portal ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle portal ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle portal ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle portal ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle portal ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle portal ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle portal ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle portal ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle portal ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle portal ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle portal ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle portal ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle portal ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle portal ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle portal ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle portal ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle portal ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle portal ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle portal ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle portal ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle portal ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle portal ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle portal ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle portal ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle portal ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle portal ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle portal ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle portal ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle portal ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle portal ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle portal ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle portal ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle portal ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle portal ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle portal ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle portal ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle portal ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle portal ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle portal ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle portal ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle portal ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle portal ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle portal ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle portal ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle portal ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle portal ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle portal ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle portal ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle portal ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle portal ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle portal ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle portal ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle portal ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle portal ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle portal ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle portal ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle portal ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle portal ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle portal ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle portal ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle portal ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle portal ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle portal ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle portal ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle portal ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle portal ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle portal ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle portal ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle portal ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle portal ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle portal ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle portal ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle portal ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/repair.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/repair.mcfunction new file mode 100644 index 0000000..c80bfe1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/magic_repair/repair.mcfunction @@ -0,0 +1,8 @@ +item modify entity @s armor.head infinity_cave:full_fix +item modify entity @s armor.chest infinity_cave:full_fix +item modify entity @s armor.legs infinity_cave:full_fix +item modify entity @s armor.feet infinity_cave:full_fix + +xp add @s -10 levels + +playsound block.anvil.use player @s ~ ~ ~ 0.2 2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_enchant.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_enchant.mcfunction new file mode 100644 index 0000000..0729341 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_enchant.mcfunction @@ -0,0 +1,9 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_enchant] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/enchant/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_enchant] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/enchant/activate + +advancement revoke @s only infinity_cave:mechanics/rc/rc_enchant \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_fireball.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_fireball.mcfunction new file mode 100644 index 0000000..076f036 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_fireball.mcfunction @@ -0,0 +1,9 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_fireball] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/fireball/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_fireball] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/fireball/activate + +advancement revoke @s only infinity_cave:mechanics/rc/rc_fireball \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_ice_spark.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_ice_spark.mcfunction new file mode 100644 index 0000000..ccab624 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_ice_spark.mcfunction @@ -0,0 +1,9 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_ice_spark] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/ice_spark/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_ice_spark] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/ice_spark/activate + +advancement revoke @s only infinity_cave:mechanics/rc/rc_ice_spark \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_magic_repair.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_magic_repair.mcfunction new file mode 100644 index 0000000..7cabd9e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_magic_repair.mcfunction @@ -0,0 +1,9 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_magic_repair] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/magic_repair/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_magic_repair] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/magic_repair/activate + +advancement revoke @s only infinity_cave:mechanics/rc/rc_magic_repair \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_spawnlet.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_spawnlet.mcfunction new file mode 100644 index 0000000..4bc06ad --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_spawnlet.mcfunction @@ -0,0 +1,9 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_spawnlet] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/spawnlet/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_spawnlet] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/spawnlet/activate + +advancement revoke @s only infinity_cave:mechanics/rc/rc_spawnlet \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_teleport.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_teleport.mcfunction new file mode 100644 index 0000000..decde5e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/rc_teleport.mcfunction @@ -0,0 +1,7 @@ +# Updates rc Count Before Execution +execute store result score %mainhand ic.int run clear @s[predicate=infinity_cave:rc/detect_rc] minecraft:ender_eye{ic:rc} 0 +execute store result score %offhand ic.int run clear @s[predicate=infinity_cave:rc/detect_off_rc] minecraft:ender_eye{ic:rc} 0 + +execute if entity @s[predicate=infinity_cave:rc/no_rc,predicate=!infinity_cave:rc/detect_rc_teleport] if score %offhand ic.int matches 1.. run function infinity_cave:mechanics/rc/teleport/activate + +execute if entity @s[predicate=infinity_cave:rc/detect_rc_teleport] if score %mainhand ic.int matches 1.. run function infinity_cave:mechanics/rc/teleport/activate \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/activate.mcfunction new file mode 100644 index 0000000..2f7aae8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/activate.mcfunction @@ -0,0 +1,5 @@ +scoreboard players set #ic.hit ic.int 0 + +execute at @s run function infinity_cave:mechanics/rc/teleport/particles + +execute anchored eyes positioned ^ ^ ^ anchored feet run function infinity_cave:mechanics/rc/teleport/ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/hit_block.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/hit_block.mcfunction new file mode 100644 index 0000000..3b64a1b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/hit_block.mcfunction @@ -0,0 +1,11 @@ +scoreboard players set #ic.hit ic.int 1 + +tp ~ ~1 ~ + +particle portal ~ ~ ~ 0 0 0 0.4 10 force + +playsound entity.enderman.teleport player @a[distance=..15] ~ ~ ~ 0.1 2 1 + +advancement revoke @s only infinity_cave:mechanics/rc/rc_teleport + +scoreboard players set #ic.distance ic.int 0 diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/particles.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/particles.mcfunction new file mode 100644 index 0000000..b0d58d9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/particles.mcfunction @@ -0,0 +1,84 @@ +particle portal ~0.100 ~0.100 ~1.750 0 0 0 0 1 force @a +particle portal ~0.413 ~0.100 ~1.701 0 0 0 0 1 force @a +particle portal ~0.802 ~0.100 ~1.555 0 0 0 0 1 force @a +particle portal ~1.146 ~0.100 ~1.322 0 0 0 0 1 force @a +particle portal ~1.426 ~0.100 ~1.015 0 0 0 0 1 force @a +particle portal ~1.625 ~0.100 ~0.650 0 0 0 0 1 force @a +particle portal ~1.732 ~0.100 ~0.248 0 0 0 0 1 force @a +particle portal ~1.742 ~0.100 ~-0.168 0 0 0 0 1 force @a +particle portal ~1.653 ~0.100 ~-0.574 0 0 0 0 1 force @a +particle portal ~1.471 ~0.100 ~-0.947 0 0 0 0 1 force @a +particle portal ~1.206 ~0.100 ~-1.268 0 0 0 0 1 force @a +particle portal ~0.873 ~0.100 ~-1.516 0 0 0 0 1 force @a +particle portal ~0.491 ~0.100 ~-1.680 0 0 0 0 1 force @a +particle portal ~0.081 ~0.100 ~-1.748 0 0 0 0 1 force @a +particle portal ~-0.333 ~0.100 ~-1.718 0 0 0 0 1 force @a +particle portal ~-0.729 ~0.100 ~-1.591 0 0 0 0 1 force @a +particle portal ~-1.084 ~0.100 ~-1.374 0 0 0 0 1 force @a +particle portal ~-1.377 ~0.100 ~-1.080 0 0 0 0 1 force @a +particle portal ~-1.593 ~0.100 ~-0.724 0 0 0 0 1 force @a +particle portal ~-1.719 ~0.100 ~-0.328 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~0.087 0 0 0 0 1 force @a +particle portal ~-1.678 ~0.100 ~0.496 0 0 0 0 1 force @a +particle portal ~-1.514 ~0.100 ~0.878 0 0 0 0 1 force @a +particle portal ~-1.264 ~0.100 ~1.210 0 0 0 0 1 force @a +particle portal ~-0.943 ~0.100 ~1.474 0 0 0 0 1 force @a +particle portal ~-0.568 ~0.100 ~1.655 0 0 0 0 1 force @a +particle portal ~-0.162 ~0.100 ~1.742 0 0 0 0 1 force @a +particle portal ~0.254 ~0.100 ~1.732 0 0 0 0 1 force @a +particle portal ~0.655 ~0.100 ~1.623 0 0 0 0 1 force @a +particle portal ~1.019 ~0.100 ~1.423 0 0 0 0 1 force @a +particle portal ~1.326 ~0.100 ~1.142 0 0 0 0 1 force @a +particle portal ~1.558 ~0.100 ~0.797 0 0 0 0 1 force @a +particle portal ~1.702 ~0.100 ~0.407 0 0 0 0 1 force @a +particle portal ~1.750 ~0.100 ~-0.006 0 0 0 0 1 force @a +particle portal ~1.699 ~0.100 ~-0.418 0 0 0 0 1 force @a +particle portal ~1.553 ~0.100 ~-0.807 0 0 0 0 1 force @a +particle portal ~1.319 ~0.100 ~-1.151 0 0 0 0 1 force @a +particle portal ~1.010 ~0.100 ~-1.429 0 0 0 0 1 force @a +particle portal ~0.644 ~0.100 ~-1.627 0 0 0 0 1 force @a +particle portal ~0.243 ~0.100 ~-1.733 0 0 0 0 1 force @a +particle portal ~-0.173 ~0.100 ~-1.741 0 0 0 0 1 force @a +particle portal ~-0.579 ~0.100 ~-1.651 0 0 0 0 1 force @a +particle portal ~-0.952 ~0.100 ~-1.468 0 0 0 0 1 force @a +particle portal ~-1.271 ~0.100 ~-1.202 0 0 0 0 1 force @a +particle portal ~-1.519 ~0.100 ~-0.869 0 0 0 0 1 force @a +particle portal ~-1.681 ~0.100 ~-0.486 0 0 0 0 1 force @a +particle portal ~-1.748 ~0.100 ~-0.076 0 0 0 0 1 force @a +particle portal ~-1.717 ~0.100 ~0.339 0 0 0 0 1 force @a +particle portal ~-1.588 ~0.100 ~0.734 0 0 0 0 1 force @a +particle portal ~-1.370 ~0.100 ~1.088 0 0 0 0 1 force @a +particle portal ~-1.075 ~0.100 ~1.381 0 0 0 0 1 force @a +particle portal ~-0.719 ~0.100 ~1.595 0 0 0 0 1 force @a +particle portal ~-0.323 ~0.100 ~1.720 0 0 0 0 1 force @a +particle portal ~0.092 ~0.100 ~1.748 0 0 0 0 1 force @a +particle portal ~0.502 ~0.100 ~1.677 0 0 0 0 1 force @a +particle portal ~0.883 ~0.100 ~1.511 0 0 0 0 1 force @a +particle portal ~1.214 ~0.100 ~1.260 0 0 0 0 1 force @a +particle portal ~1.477 ~0.100 ~0.938 0 0 0 0 1 force @a +particle portal ~1.657 ~0.100 ~0.563 0 0 0 0 1 force @a +particle portal ~1.743 ~0.100 ~0.156 0 0 0 0 1 force @a +particle portal ~1.731 ~0.100 ~-0.259 0 0 0 0 1 force @a +particle portal ~1.621 ~0.100 ~-0.660 0 0 0 0 1 force @a +particle portal ~1.419 ~0.100 ~-1.024 0 0 0 0 1 force @a +particle portal ~1.138 ~0.100 ~-1.329 0 0 0 0 1 force @a +particle portal ~0.792 ~0.100 ~-1.560 0 0 0 0 1 force @a +particle portal ~0.402 ~0.100 ~-1.703 0 0 0 0 1 force @a +particle portal ~-0.011 ~0.100 ~-1.750 0 0 0 0 1 force @a +particle portal ~-0.423 ~0.100 ~-1.698 0 0 0 0 1 force @a +particle portal ~-0.812 ~0.100 ~-1.550 0 0 0 0 1 force @a +particle portal ~-1.155 ~0.100 ~-1.315 0 0 0 0 1 force @a +particle portal ~-1.432 ~0.100 ~-1.006 0 0 0 0 1 force @a +particle portal ~-1.629 ~0.100 ~-0.639 0 0 0 0 1 force @a +particle portal ~-1.734 ~0.100 ~-0.237 0 0 0 0 1 force @a +particle portal ~-1.741 ~0.100 ~0.179 0 0 0 0 1 force @a +particle portal ~-1.650 ~0.100 ~0.584 0 0 0 0 1 force @a +particle portal ~-1.465 ~0.100 ~0.957 0 0 0 0 1 force @a +particle portal ~-1.198 ~0.100 ~1.275 0 0 0 0 1 force @a +particle portal ~-0.864 ~0.100 ~1.522 0 0 0 0 1 force @a +particle portal ~-0.480 ~0.100 ~1.683 0 0 0 0 1 force @a +particle portal ~-0.070 ~0.100 ~1.749 0 0 0 0 1 force @a +particle portal ~0.344 ~0.100 ~1.716 0 0 0 0 1 force @a +particle portal ~0.739 ~0.100 ~1.586 0 0 0 0 1 force @a +particle portal ~1.093 ~0.100 ~1.367 0 0 0 0 1 force @a +particle portal ~1.384 ~0.100 ~1.071 0 0 0 0 1 force @a \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/ray.mcfunction new file mode 100644 index 0000000..42f5b4e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/rc/teleport/ray.mcfunction @@ -0,0 +1,7 @@ +execute if block ~ ~ ~ #infinity_cave:all_but_air run function infinity_cave:mechanics/rc/teleport/hit_block + +scoreboard players add #ic.distance ic.int 1 + +execute if score #ic.hit ic.int matches 0 if score #ic.distance ic.int matches ..200 positioned ^ ^ ^0.1 run function infinity_cave:mechanics/rc/teleport/ray + +execute if score #ic.distance ic.int matches 201.. run function infinity_cave:mechanics/rc/teleport/hit_block \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/safety_banner.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/safety_banner.mcfunction new file mode 100644 index 0000000..51bb955 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/safety_banner.mcfunction @@ -0,0 +1,7 @@ +playsound block.respawn_anchor.deplete block @a[distance=..50] ~ ~ ~ 0.5 2 1 + +tellraw @a[distance=..50] ["",{"text":"[","color":"dark_gray"},{"text":"Infinity Cave","color":"#4C7ED2"},{"text":"]","color":"dark_gray"},{"text":" Cleared mob-spawn area!","color":"green"}] + +fill ~-50 ~-7 ~50 ~50 ~10 ~-50 air replace void_air + +advancement revoke @s only infinity_cave:mechanics/safety_banner \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/toxic_water.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/toxic_water.mcfunction new file mode 100644 index 0000000..8b74443 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/toxic_water.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/enter_toxic_water + +effect give @s poison 3 1 true \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weakness_cleanse.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weakness_cleanse.mcfunction new file mode 100644 index 0000000..aac1f9e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weakness_cleanse.mcfunction @@ -0,0 +1,7 @@ +effect clear @s weakness + +clear @s popped_chorus_fruit{ic:weakness_cleanse} 1 + +playsound particle.soul_escape player @s ~ ~ ~ 1 1 1 + +advancement revoke @s only infinity_cave:mechanics/weakness_cleanse \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/durability.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/durability.mcfunction new file mode 100644 index 0000000..9262e72 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/durability.mcfunction @@ -0,0 +1,4 @@ +item modify entity @s[predicate=!infinity_cave:weapons/acid_shield_main,predicate=infinity_cave:weapons/acid_shield_off] weapon.offhand infinity_cave:fix +item modify entity @s[predicate=infinity_cave:weapons/acid_shield_main] weapon.mainhand infinity_cave:fix + +advancement revoke @s only infinity_cave:mechanics/weapons/acid_shield/durability \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_block.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_block.mcfunction new file mode 100644 index 0000000..bd6f56e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_block.mcfunction @@ -0,0 +1 @@ +execute as @e[type=#infinity_cave:all_living,tag=!ic.acid_shield,distance=..3] run function infinity_cave:mechanics/weapons/acid_shield/hit_entity \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_entity.mcfunction new file mode 100644 index 0000000..1f59eb5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/hit_entity.mcfunction @@ -0,0 +1,9 @@ +scoreboard players set #ic.hit ic.int 1 + +particle minecraft:sneeze ~ ~ ~ 1.5 1.5 1.5 0 300 force + +damage @s 20 infinity_cave:magic_bypass by @p[tag=ic.acid_shield] + +effect give @s poison 10 1 true + +effect give @s weakness 10 1 true \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/poison_immune.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/poison_immune.mcfunction new file mode 100644 index 0000000..2e47428 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/poison_immune.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/acid_shield/poison_immune + +effect clear @s poison \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/ray.mcfunction new file mode 100644 index 0000000..4cb2e39 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/ray.mcfunction @@ -0,0 +1,9 @@ +particle sneeze ~ ~ ~ 0.25 0.25 0.25 0 5 force + +execute if score #ic.hit ic.int matches 0 positioned ~-0.05 ~-0.05 ~-0.05 as @e[type=#infinity_cave:all_living,tag=!ic.acid_shield,distance=..2] run function infinity_cave:mechanics/weapons/acid_shield/hit_entity + +execute if block ~ ~ ~ #infinity_cave:all_but_air run function infinity_cave:mechanics/weapons/acid_shield/hit_block +scoreboard players add #ic.distance ic.int 1 + + +execute if score #ic.hit ic.int matches 0 if score #ic.distance ic.int matches ..100 positioned ^ ^ ^0.1 run function infinity_cave:mechanics/weapons/acid_shield/ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/start_ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/start_ray.mcfunction new file mode 100644 index 0000000..b4b8440 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/acid_shield/start_ray.mcfunction @@ -0,0 +1,12 @@ +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.2 0 1 + +tag @s add ic.acid_shield +scoreboard players set #ic.hit ic.int 0 +scoreboard players set #ic.distance ic.int 0 + +execute anchored eyes positioned ^ ^ ^ anchored feet run function infinity_cave:mechanics/weapons/acid_shield/ray + +tag @s remove ic.acid_shield + +advancement revoke @s only infinity_cave:mechanics/weapons/acid_shield/block + diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/half.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/half.mcfunction new file mode 100644 index 0000000..8dfa591 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/half.mcfunction @@ -0,0 +1,6 @@ +damage @s 10 infinity_cave:magic_bypass by @a[scores={ic.amethyst_blade=0},distance=..5,limit=1] + +particle witch ~ ~0.8 ~ 0.66 0.99 0.66 10 30 force + +playsound minecraft:block.amethyst_block.resonate player @a[distance=..15] ~ ~ ~ 0.6 1.5 1 + diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/hit_match.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/hit_match.mcfunction new file mode 100644 index 0000000..b25c8c0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/hit_match.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/amethyst_blade/half + +scoreboard players set @s ic.amethyst_blade 0 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/main.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/main.mcfunction new file mode 100644 index 0000000..932bd15 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/amethyst_blade/main.mcfunction @@ -0,0 +1,9 @@ +execute if score @s ic.const >= @s ic.health run function infinity_cave:mechanics/weapons/amethyst_blade/half + +#execute if score @s ic.const >= @s ic.health run return 0 + +execute store result score @s ic.const run attribute @s minecraft:generic.max_health get + +execute store result score @s ic.health run data get entity @s Health + +scoreboard players operation @s ic.const /= 2 ic.const \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/distance.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/distance.mcfunction new file mode 100644 index 0000000..35b81eb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/distance.mcfunction @@ -0,0 +1,3 @@ +damage @s 15 infinity_cave:magic_bypass by @a[scores={ic.bastion_piercer=0},distance=..7,limit=1] + +particle crit ~ ~0.8 ~ 0.66 0.99 0.66 0.1 30 force diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/hit_match.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/hit_match.mcfunction new file mode 100644 index 0000000..2b604be --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/bastion_piercer/hit_match.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/bastion_piercer/distance + +scoreboard players set @s ic.bastion_piercer 0 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/fire.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/fire.mcfunction new file mode 100644 index 0000000..37f6501 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/fire.mcfunction @@ -0,0 +1,9 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/icicle_crossbow/shot + +execute as @e[type=#infinity_cave:projectiles,tag=!icicle_projectile,distance=..2,limit=3] run function infinity_cave:mechanics/weapons/icicle_crossbow/projectile + +execute anchored eyes run particle snowflake ^ ^ ^1.5 0.1 0.1 0.1 0 10 force + +playsound entity.stray.death player @a[distance=..15] ~ ~ ~ 0.5 2 1 + +execute store result score @s ic.uuid run data get entity @s UUID[0] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/projectile.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/projectile.mcfunction new file mode 100644 index 0000000..9706eb2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/icicle_crossbow/projectile.mcfunction @@ -0,0 +1,7 @@ +tag @s add icicle_projectile + +execute store result entity @s Motion[0] double 0.001 run data get entity @s Motion[0] 3000 +execute store result entity @s Motion[1] double 0.001 run data get entity @s Motion[1] 3000 +execute store result entity @s Motion[2] double 0.001 run data get entity @s Motion[2] 3000 + +data merge entity @s {Color:917503,SoundEvent:"entity.zombie.attack_iron_door"} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit.mcfunction new file mode 100644 index 0000000..d2572d2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/molten_hammer/hit + +item modify entity @s[gamemode=!creative,predicate=infinity_cave:percent/00625] weapon.mainhand infinity_cave:durability \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit_block.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit_block.mcfunction new file mode 100644 index 0000000..67ca9cd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/hit_block.mcfunction @@ -0,0 +1,9 @@ +scoreboard players set #ic.hit ic.int 1 + +particle explosion ~ ~ ~ 0 0 0 0 1 force +particle lava ~ ~ ~ 0 0 0 0 1 force +particle flame ~ ~ ~ 0.2 0.2 0.2 0.1 10 force + +execute as @e[type=#infinity_cave:all_living,tag=!ic.molten_hammer,distance=..3] run damage @s 8 infinity_cave:magic_bypass by @p[tag=ic.molten_hammer] from @p[tag=ic.molten_hammer] + +playsound entity.dragon_fireball.explode player @a[distance=..15] ~ ~ ~ 0.1 2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/ray.mcfunction new file mode 100644 index 0000000..249ccaf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/ray.mcfunction @@ -0,0 +1,6 @@ +execute if block ~ ~ ~ #infinity_cave:all_but_air run function infinity_cave:mechanics/weapons/molten_hammer/hit_block +execute if block ~ ~ ~ suspicious_gravel run setblock ~ ~ ~ gravel +execute if block ~ ~ ~ suspicious_sand run setblock ~ ~ ~ sand +scoreboard players add #ic.distance ic.int 1 + +execute if score #ic.hit ic.int matches 0 if score #ic.distance ic.int matches ..10 positioned ^ ^ ^0.6 run function infinity_cave:mechanics/weapons/molten_hammer/ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/start_ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/start_ray.mcfunction new file mode 100644 index 0000000..23d63fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/molten_hammer/start_ray.mcfunction @@ -0,0 +1,14 @@ +tag @s add ic.molten_hammer +scoreboard players set #ic.hit ic.int 0 +scoreboard players set #ic.distance ic.int 0 + +execute anchored eyes positioned ^ ^ ^ anchored feet run function infinity_cave:mechanics/weapons/molten_hammer/ray + +tag @s remove ic.molten_hammer + +scoreboard players set @s[scores={ic.molten_hammer=6..}] ic.molten_hammer 0 + +item modify entity @s[gamemode=!creative,predicate=infinity_cave:weapons/molten_off] weapon.offhand infinity_cave:durability +item modify entity @s[gamemode=!creative,predicate=infinity_cave:weapons/molten_main] weapon.mainhand infinity_cave:durability + +advancement revoke @s only infinity_cave:mechanics/weapons/molten_hammer/use \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/activate.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/activate.mcfunction new file mode 100644 index 0000000..3b64069 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/activate.mcfunction @@ -0,0 +1,11 @@ +execute store result score #sonic_const ic.int run scoreboard players get @s ic.sonic + +scoreboard players set #rip_check ic.int 0 + +scoreboard players set @s ic.sonic 200 + +execute if score #sonic_const ic.int matches ..160 unless entity @e[type=#infinity_cave:all_living,distance=0.8..5,limit=1] anchored eyes run function infinity_cave:mechanics/weapons/sonic_bow/match + +execute if score #rip_check ic.int matches 1 run return 0 + +execute if score #sonic_const ic.int matches ..160 as @e[type=#infinity_cave:all_living,distance=0.8..5,limit=1] at @s run function infinity_cave:mechanics/weapons/sonic_bow/explosion \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge.mcfunction new file mode 100644 index 0000000..bc5ba08 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge.mcfunction @@ -0,0 +1,20 @@ +advancement revoke @s[scores={ic.sonic_charge=0}] only infinity_cave:mechanics/weapons/sonic_bow/tick + +scoreboard players set @s[scores={ic.sonic=200..}] ic.sonic 200 + +scoreboard players remove @s ic.sonic 2 + +playsound entity.warden.listening player @a[distance=..15] ~ ~ ~ 0.05 2 1 +particle minecraft:sculk_soul ~ ~1 ~ 0.25 0.25 0.25 0.1 1 force + +execute if entity @s[scores={ic.sonic=121..160}] run function infinity_cave:mechanics/weapons/sonic_bow/charge_1 +execute if entity @s[scores={ic.sonic=81..120}] run function infinity_cave:mechanics/weapons/sonic_bow/charge_2 +execute if entity @s[scores={ic.sonic=41..80}] run function infinity_cave:mechanics/weapons/sonic_bow/charge_3 +execute if entity @s[scores={ic.sonic=1..40}] run function infinity_cave:mechanics/weapons/sonic_bow/charge_4 +execute if entity @s[scores={ic.sonic=..0}] run function infinity_cave:mechanics/weapons/sonic_bow/charge_5 + +scoreboard players set @s ic.sonic_charge 2 + +advancement revoke @s only infinity_cave:mechanics/weapons/sonic_bow/charge + + diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_1.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_1.mcfunction new file mode 100644 index 0000000..40ec8a4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_1.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.sonic=160}] run playsound minecraft:block.sculk_sensor.clicking player @a[distance=..15] ~ ~ ~ 1 0.5 1 +execute if entity @s[scores={ic.sonic=160}] run particle minecraft:sculk_charge 0 ~ ~1 ~ 0.1 0.1 0.1 0.25 50 force +particle minecraft:sculk_charge_pop ~ ~0.2 ~ 0.2 0.2 0.2 0 4 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_2.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_2.mcfunction new file mode 100644 index 0000000..bed7fd3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_2.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.sonic=120}] run playsound minecraft:block.sculk_sensor.clicking player @a[distance=..15] ~ ~ ~ 1 0.6 1 +execute if entity @s[scores={ic.sonic=120}] run particle minecraft:sculk_charge 0 ~ ~1 ~ 0.2 0.2 0.2 0.5 55 force +particle minecraft:sculk_charge_pop ~ ~0.2 ~ 0.3 0.3 0.3 0 5 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_3.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_3.mcfunction new file mode 100644 index 0000000..3bed9fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_3.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.sonic=80}] run playsound minecraft:block.sculk_sensor.clicking player @a[distance=..15] ~ ~ ~ 1 0.7 1 +execute if entity @s[scores={ic.sonic=80}] run particle minecraft:sculk_charge 0 ~ ~1 ~ 0.3 0.3 0.3 0.75 60 force +particle minecraft:sculk_charge_pop ~ ~0.2 ~ 0.3 0.3 0.3 0 7 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_4.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_4.mcfunction new file mode 100644 index 0000000..ed5837e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_4.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.sonic=40}] run playsound minecraft:block.sculk_sensor.clicking player @a[distance=..15] ~ ~ ~ 1 0.8 1 +execute if entity @s[scores={ic.sonic=40}] run particle minecraft:sculk_charge 0 ~ ~1 ~ 0.4 0.4 0.4 1 70 force +particle minecraft:sculk_charge_pop ~ ~0.2 ~ 0.4 0.4 0.4 0 10 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_5.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_5.mcfunction new file mode 100644 index 0000000..fff98bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/charge_5.mcfunction @@ -0,0 +1,4 @@ +playsound minecraft:block.sculk_sensor.clicking player @a[distance=..15] ~ ~ ~ 0.1 1 1 +execute if entity @s[scores={ic.sonic=0}] run playsound minecraft:entity.warden.roar player @a[distance=..15] ~ ~ ~ 1 2 1 +execute if entity @s[scores={ic.sonic=0}] run particle flash ~ ~ ~ 0 0 0 0 1 force +particle minecraft:sculk_charge_pop ~ ~0.2 ~ 0.5 0.5 0.5 0 12 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/1.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/1.mcfunction new file mode 100644 index 0000000..23eaffd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/1.mcfunction @@ -0,0 +1,7 @@ +execute store result entity @s Motion[0] double 0.0015 run data get entity @s Motion[0] 1000 +execute store result entity @s Motion[1] double 0.0015 run data get entity @s Motion[1] 1000 +execute store result entity @s Motion[2] double 0.0015 run data get entity @s Motion[2] 1000 + +data merge entity @s {SoundEvent:"entity.warden.attack_impact"} + +playsound entity.drowned.shoot player @a[distance=..15] ~ ~ ~ 1 0.5 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/2.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/2.mcfunction new file mode 100644 index 0000000..09ca542 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/2.mcfunction @@ -0,0 +1,7 @@ +execute store result entity @s Motion[0] double 0.002 run data get entity @s Motion[0] 1000 +execute store result entity @s Motion[1] double 0.002 run data get entity @s Motion[1] 1000 +execute store result entity @s Motion[2] double 0.002 run data get entity @s Motion[2] 1000 + +data merge entity @s {PierceLevel:1b,SoundEvent:"entity.warden.attack_impact"} + +playsound entity.drowned.shoot player @a[distance=..15] ~ ~ ~ 1 0.8 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/3.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/3.mcfunction new file mode 100644 index 0000000..76ed1ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/3.mcfunction @@ -0,0 +1,7 @@ +execute store result entity @s Motion[0] double 0.002 run data get entity @s Motion[0] 1250 +execute store result entity @s Motion[1] double 0.002 run data get entity @s Motion[1] 1250 +execute store result entity @s Motion[2] double 0.002 run data get entity @s Motion[2] 1250 + +data merge entity @s {PierceLevel:2b,SoundEvent:"entity.warden.attack_impact"} + +playsound entity.drowned.shoot player @a[distance=..25] ~ ~ ~ 1 1 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/4.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/4.mcfunction new file mode 100644 index 0000000..099078a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/4.mcfunction @@ -0,0 +1,7 @@ +execute store result entity @s Motion[0] double 0.002 run data get entity @s Motion[0] 1500 +execute store result entity @s Motion[1] double 0.002 run data get entity @s Motion[1] 1500 +execute store result entity @s Motion[2] double 0.002 run data get entity @s Motion[2] 1500 + +data merge entity @s {PierceLevel:3b,SoundEvent:"entity.warden.attack_impact"} + +playsound entity.drowned.shoot player @a[distance=..25] ~ ~ ~ 1 1.2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/5.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/5.mcfunction new file mode 100644 index 0000000..3a87573 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/damage/5.mcfunction @@ -0,0 +1,8 @@ +execute store result entity @s Motion[0] double 0.00225 run data get entity @s Motion[0] 1500 +execute store result entity @s Motion[1] double 0.00225 run data get entity @s Motion[1] 1500 +execute store result entity @s Motion[2] double 0.00225 run data get entity @s Motion[2] 1500 + +data merge entity @s {PierceLevel:10b,SoundEvent:"entity.warden.attack_impact"} + +playsound entity.drowned.shoot player @a[distance=..50] ~ ~ ~ 1 1.6 1 +playsound entity.warden.death player @a[distance=..50] ~ ~ ~ 1 2 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion.mcfunction new file mode 100644 index 0000000..d7038f1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion.mcfunction @@ -0,0 +1,5 @@ +execute if score #sonic_const ic.int matches 121..160 run function infinity_cave:mechanics/weapons/sonic_bow/explosion/1 +execute if score #sonic_const ic.int matches 81..120 run function infinity_cave:mechanics/weapons/sonic_bow/explosion/2 +execute if score #sonic_const ic.int matches 41..80 run function infinity_cave:mechanics/weapons/sonic_bow/explosion/3 +execute if score #sonic_const ic.int matches 1..40 run function infinity_cave:mechanics/weapons/sonic_bow/explosion/4 +execute if score #sonic_const ic.int matches ..0 run function infinity_cave:mechanics/weapons/sonic_bow/explosion/5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/1.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/1.mcfunction new file mode 100644 index 0000000..5abb978 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/1.mcfunction @@ -0,0 +1,7 @@ +particle minecraft:explosion_emitter + +particle sonic_boom ~ ~ ~ 4 4 4 0.4 10 force + +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.6 0.5 1 + +damage @s 20 infinity_cave:magic_bypass at ~ ~ ~ \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/2.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/2.mcfunction new file mode 100644 index 0000000..7c0b55b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/2.mcfunction @@ -0,0 +1,7 @@ +particle minecraft:explosion_emitter + +particle sonic_boom ~ ~ ~ 4 4 4 0.4 20 force + +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.6 0.5 1 + +damage @s 25 infinity_cave:magic_bypass at ~ ~ ~ \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/3.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/3.mcfunction new file mode 100644 index 0000000..437b495 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/3.mcfunction @@ -0,0 +1,7 @@ +particle minecraft:explosion_emitter + +particle sonic_boom ~ ~ ~ 4 4 4 0.4 30 force + +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.6 0.5 1 + +damage @s 30 infinity_cave:magic_bypass at ~ ~ ~ \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/4.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/4.mcfunction new file mode 100644 index 0000000..78cea0f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/4.mcfunction @@ -0,0 +1,7 @@ +particle minecraft:explosion_emitter + +particle sonic_boom ~ ~ ~ 4 4 4 0.4 50 force + +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.6 0.5 1 + +damage @s 40 infinity_cave:magic_bypass at ~ ~ ~ \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/5.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/5.mcfunction new file mode 100644 index 0000000..e6a9154 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/explosion/5.mcfunction @@ -0,0 +1,7 @@ +particle minecraft:explosion_emitter + +particle sonic_boom ~ ~ ~ 4 4 4 0.4 100 force + +playsound entity.wither.shoot player @a[distance=..15] ~ ~ ~ 0.6 0.5 1 + +damage @s 50 infinity_cave:magic_bypass at ~ ~ ~ \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/match.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/match.mcfunction new file mode 100644 index 0000000..465c65e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/match.mcfunction @@ -0,0 +1,3 @@ +execute as @e[type=arrow,nbt={inGround:0b},distance=..5] at @s run function infinity_cave:mechanics/weapons/sonic_bow/uuid + +scoreboard players set #rip_check ic.int 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/shoot.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/shoot.mcfunction new file mode 100644 index 0000000..7469663 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/shoot.mcfunction @@ -0,0 +1,5 @@ +execute if score #sonic_const ic.int matches 121..160 run function infinity_cave:mechanics/weapons/sonic_bow/damage/1 +execute if score #sonic_const ic.int matches 81..120 run function infinity_cave:mechanics/weapons/sonic_bow/damage/2 +execute if score #sonic_const ic.int matches 41..80 run function infinity_cave:mechanics/weapons/sonic_bow/damage/3 +execute if score #sonic_const ic.int matches 1..40 run function infinity_cave:mechanics/weapons/sonic_bow/damage/4 +execute if score #sonic_const ic.int matches ..0 run function infinity_cave:mechanics/weapons/sonic_bow/damage/5 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/tick.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/tick.mcfunction new file mode 100644 index 0000000..d27b44c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/tick.mcfunction @@ -0,0 +1,5 @@ +scoreboard players remove @s[scores={ic.sonic_charge=1..}] ic.sonic_charge 1 + +execute if entity @s[scores={ic.sonic_charge=0}] run function infinity_cave:mechanics/weapons/sonic_bow/activate + +advancement revoke @s[scores={ic.sonic_charge=1..}] only infinity_cave:mechanics/weapons/sonic_bow/tick \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/uuid.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/uuid.mcfunction new file mode 100644 index 0000000..fb41a87 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/sonic_bow/uuid.mcfunction @@ -0,0 +1,8 @@ +data modify storage ic:projectile player set from entity @p UUID +data modify storage ic:projectile projectile set from entity @s Owner + +data modify storage ic:projectile ic.int set from storage ic:projectile player +execute store success score $success ic.int run data modify storage ic:projectile ic.int set from storage ic:projectile projectile +execute if score $success ic.int matches 0 run function infinity_cave:mechanics/weapons/sonic_bow/shoot + +tag @s add ic.compared \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/hit_match.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/hit_match.mcfunction new file mode 100644 index 0000000..55bf6f0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/hit_match.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/steel_battleaxe/shield + +scoreboard players set @s ic.steel_battleaxe 0 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/shield.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/shield.mcfunction new file mode 100644 index 0000000..c437bd5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/steel_battleaxe/shield.mcfunction @@ -0,0 +1,4 @@ +damage @s 15 infinity_cave:magic_bypass by @a[scores={ic.steel_battleaxe=0},distance=..5,limit=1] + +particle smoke ~ ~0.8 ~ 0.66 0.99 0.66 0.1 30 force + diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge.mcfunction new file mode 100644 index 0000000..05b1fcc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge.mcfunction @@ -0,0 +1,22 @@ +advancement revoke @s[scores={ic.torpedo_charge=0}] only infinity_cave:mechanics/weapons/torpedo_harpoon/tick + +scoreboard players set @s[scores={ic.torpedo=200..}] ic.damage_blocked 0 + +scoreboard players set @s[scores={ic.torpedo=200..}] ic.torpedo 200 + +scoreboard players remove @s ic.torpedo 2 + +playsound entity.warden.heartbeat player @a[distance=..15] ~ ~ ~ 0.1 2 1 +particle minecraft:electric_spark ~ ~1 ~ 0.5 0.5 0.5 0.7 2 force + +execute if entity @s[scores={ic.torpedo=121..160}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/charge_1 +execute if entity @s[scores={ic.torpedo=81..120}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/charge_2 +execute if entity @s[scores={ic.torpedo=41..80}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/charge_3 +execute if entity @s[scores={ic.torpedo=1..40}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/charge_4 +execute if entity @s[scores={ic.torpedo=..0}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/charge_5 + +scoreboard players set @s ic.torpedo_charge 2 + +advancement revoke @s only infinity_cave:mechanics/weapons/torpedo_harpoon/charge + + diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_1.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_1.mcfunction new file mode 100644 index 0000000..c8ff0f7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_1.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.torpedo=159}] run playsound minecraft:entity.evoker.cast_spell player @a[distance=..15] ~ ~ ~ 1 1.1 1 +execute if entity @s[scores={ic.torpedo=159}] run particle minecraft:firework ~ ~1 ~ 0.1 0.1 0.1 0.25 50 force +particle minecraft:electric_spark ~ ~1 ~ 0.3 0.3 0.3 0.5 4 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_2.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_2.mcfunction new file mode 100644 index 0000000..6350f49 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_2.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.torpedo=119}] run playsound minecraft:entity.evoker.cast_spell player @a[distance=..15] ~ ~ ~ 1 1.25 1 +execute if entity @s[scores={ic.torpedo=119}] run particle minecraft:firework ~ ~1 ~ 0.2 0.2 0.2 0.5 55 force +particle minecraft:electric_spark ~ ~1 ~ 0.3 0.3 0.3 1 5 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_3.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_3.mcfunction new file mode 100644 index 0000000..df8bc0d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_3.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.torpedo=79}] run playsound minecraft:entity.evoker.cast_spell player @a[distance=..15] ~ ~ ~ 1 1.5 1 +execute if entity @s[scores={ic.torpedo=79}] run particle minecraft:firework ~ ~1 ~ 0.3 0.3 0.3 0.75 60 force +particle minecraft:electric_spark ~ ~1 ~ 0.35 0.35 0.35 2 8 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_4.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_4.mcfunction new file mode 100644 index 0000000..80b2e4a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_4.mcfunction @@ -0,0 +1,3 @@ +execute if entity @s[scores={ic.torpedo=39}] run playsound minecraft:entity.evoker.cast_spell player @a[distance=..15] ~ ~ ~ 1 1.8 1 +execute if entity @s[scores={ic.torpedo=39}] run particle minecraft:firework ~ ~1 ~ 0.4 0.4 0.4 1 70 force +particle minecraft:electric_spark ~ ~1 ~ 0.4 0.4 0.4 3 10 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_5.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_5.mcfunction new file mode 100644 index 0000000..14493d5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/charge_5.mcfunction @@ -0,0 +1,5 @@ +execute if entity @s[scores={ic.torpedo=-1}] run playsound entity.lightning_bolt.thunder player @a[distance=..15] ~ ~ ~ 1 1.6 1 +execute if entity @s[scores={ic.torpedo=-1}] run playsound minecraft:entity.evoker.cast_spell player @a[distance=..15] ~ ~ ~ 1 2 1 +execute if entity @s[scores={ic.torpedo=-1}] run particle flash ~ ~ ~ 0 0 0 0 1 force +particle minecraft:electric_spark ~ ~1 ~ 0.5 0.5 0.5 4 15 force +particle minecraft:firework ~ ~1 ~ 0.25 0.25 0.25 0.5 4 force \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/1.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/1.mcfunction new file mode 100644 index 0000000..58e45f4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/1.mcfunction @@ -0,0 +1,2 @@ +particle minecraft:firework ~ ~ ~ 1.5 1.5 1.5 0 150 force +damage @s 20 infinity_cave:magic_bypass by @p[tag=ic.torpedo_harpoon] from @p[tag=ic.torpedo_harpoon] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/2.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/2.mcfunction new file mode 100644 index 0000000..ca1375e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/2.mcfunction @@ -0,0 +1,2 @@ +particle minecraft:firework ~ ~ ~ 1.75 1.75 1.75 0 200 force +damage @s 25 infinity_cave:magic_bypass by @p[tag=ic.torpedo_harpoon] from @p[tag=ic.torpedo_harpoon] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/3.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/3.mcfunction new file mode 100644 index 0000000..482c84c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/3.mcfunction @@ -0,0 +1,2 @@ +particle minecraft:firework ~ ~ ~ 2 2 2 0 250 force +damage @s 30 infinity_cave:magic_bypass by @p[tag=ic.torpedo_harpoon] from @p[tag=ic.torpedo_harpoon] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/4.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/4.mcfunction new file mode 100644 index 0000000..579239f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/4.mcfunction @@ -0,0 +1,2 @@ +particle minecraft:firework ~ ~ ~ 2.5 2.5 2.5 0.05 300 force +damage @s 40 infinity_cave:magic_bypass by @p[tag=ic.torpedo_harpoon] from @p[tag=ic.torpedo_harpoon] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/5.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/5.mcfunction new file mode 100644 index 0000000..ec19c71 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/damage/5.mcfunction @@ -0,0 +1,3 @@ +particle minecraft:firework ~ ~ ~ 3 3 3 0.1 400 force +particle minecraft:sculk_charge 0 ~ ~ ~ 0 0 0 0.6 20 force +damage @s 50 infinity_cave:magic_bypass by @p[tag=ic.torpedo_harpoon] from @p[tag=ic.torpedo_harpoon] \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/durability.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/durability.mcfunction new file mode 100644 index 0000000..39b75f8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/durability.mcfunction @@ -0,0 +1,3 @@ +advancement revoke @s only infinity_cave:mechanics/weapons/torpedo_harpoon/hit + +item modify entity @s[gamemode=!creative,predicate=infinity_cave:percent/00625] weapon.mainhand infinity_cave:durability_2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/hit.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/hit.mcfunction new file mode 100644 index 0000000..d50b771 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/hit.mcfunction @@ -0,0 +1,7 @@ +execute if score #torpedo_const ic.int matches 121..160 run execute as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,distance=..4] run function infinity_cave:mechanics/weapons/torpedo_harpoon/damage/1 +execute if score #torpedo_const ic.int matches 81..120 run execute as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,distance=..5] run function infinity_cave:mechanics/weapons/torpedo_harpoon/damage/2 +execute if score #torpedo_const ic.int matches 41..80 run execute as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,distance=..6] run function infinity_cave:mechanics/weapons/torpedo_harpoon/damage/3 +execute if score #torpedo_const ic.int matches 1..40 run execute as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,distance=..7.5] run function infinity_cave:mechanics/weapons/torpedo_harpoon/damage/4 +execute if score #torpedo_const ic.int matches ..0 run execute as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,distance=..10] run function infinity_cave:mechanics/weapons/torpedo_harpoon/damage/5 + +scoreboard players set #ic.hit ic.int 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/launch.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/launch.mcfunction new file mode 100644 index 0000000..20fc105 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/launch.mcfunction @@ -0,0 +1,5 @@ +execute store result score #torpedo_const ic.int run scoreboard players get @s ic.torpedo + +scoreboard players set @s ic.torpedo 200 + +execute if score #torpedo_const ic.int matches ..159 anchored eyes run function infinity_cave:mechanics/weapons/torpedo_harpoon/start_ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/ray.mcfunction new file mode 100644 index 0000000..46eb7f7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/ray.mcfunction @@ -0,0 +1,14 @@ +execute if score #torpedo_const ic.int matches 121..160 run particle firework ~ ~ ~ 0 0 0 0.05 1 force +execute if score #torpedo_const ic.int matches 81..120 run particle firework ~ ~ ~ 0 0 0 0.075 2 force +execute if score #torpedo_const ic.int matches 41..80 run particle firework ~ ~ ~ 0 0 0 0.1 3 force +execute if score #torpedo_const ic.int matches 1..40 run particle firework ~ ~ ~ 0 0 0 0.125 4 force +execute if score #torpedo_const ic.int matches ..0 run particle firework ~ ~ ~ 0 0 0 0.15 5 force +particle minecraft:sculk_charge 0 ~ ~ ~ 0 0 0 0.6 2 force + +execute if score #ic.hit ic.int matches 0 positioned ~-0.05 ~-0.05 ~-0.05 as @e[type=#infinity_cave:all_living,tag=!ic.torpedo_harpoon,dx=0,sort=nearest] run function infinity_cave:mechanics/weapons/torpedo_harpoon/hit + +execute if block ~ ~ ~ #infinity_cave:all_but_air run function infinity_cave:mechanics/weapons/torpedo_harpoon/hit +scoreboard players add #ic.distance ic.int 1 + + +execute if score #ic.hit ic.int matches 0 if score #ic.distance ic.int matches ..1200 positioned ^ ^ ^0.25 run function infinity_cave:mechanics/weapons/torpedo_harpoon/ray \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/start_ray.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/start_ray.mcfunction new file mode 100644 index 0000000..bd54d70 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/start_ray.mcfunction @@ -0,0 +1,17 @@ +item modify entity @s[gamemode=!creative,predicate=infinity_cave:percent/00625] weapon.mainhand infinity_cave:durability_2 + +execute if score #torpedo_const ic.int matches 121..160 run playsound entity.lightning_bolt.impact player @a[distance=..50] ~ ~ ~ 0.25 0.2 1 +execute if score #torpedo_const ic.int matches 81..120 run playsound entity.lightning_bolt.impact player @a[distance=..50] ~ ~ ~ 0.3 0.3 1 +execute if score #torpedo_const ic.int matches 41..80 run playsound entity.lightning_bolt.impact player @a[distance=..50] ~ ~ ~ 0.4 0.4 1 +execute if score #torpedo_const ic.int matches 1..40 run playsound entity.lightning_bolt.impact player @a[distance=..50] ~ ~ ~ 0.8 0.5 1 +execute if score #torpedo_const ic.int matches ..0 run playsound entity.warden.sonic_boom player @a[distance=..50] ~ ~ ~ 1 0.6 1 + +tag @s add ic.torpedo_harpoon +scoreboard players set #ic.hit ic.int 0 +scoreboard players set #ic.distance ic.int 0 + +execute anchored eyes positioned ^ ^ ^ anchored feet run function infinity_cave:mechanics/weapons/torpedo_harpoon/ray + +tag @s remove ic.torpedo_harpoon + + diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/tick.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/tick.mcfunction new file mode 100644 index 0000000..f40783f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/mechanics/weapons/torpedo_harpoon/tick.mcfunction @@ -0,0 +1,5 @@ +scoreboard players remove @s[scores={ic.torpedo_charge=1..}] ic.torpedo_charge 1 + +execute if entity @s[scores={ic.torpedo_charge=0}] run function infinity_cave:mechanics/weapons/torpedo_harpoon/launch + +advancement revoke @s[scores={ic.torpedo_charge=1..}] only infinity_cave:mechanics/weapons/torpedo_harpoon/tick \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/settings.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/settings.mcfunction new file mode 100644 index 0000000..0438438 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/settings.mcfunction @@ -0,0 +1,2 @@ +tag @s add ic.settings +schedule function infinity_cave:settings/_schedule 1t append \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/settings/_schedule.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/settings/_schedule.mcfunction new file mode 100644 index 0000000..3cc056c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/settings/_schedule.mcfunction @@ -0,0 +1 @@ +execute as @a[tag=ic.settings] run function infinity_cave:settings/_text \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/settings/_text.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/settings/_text.mcfunction new file mode 100644 index 0000000..9975bba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/settings/_text.mcfunction @@ -0,0 +1,5 @@ +tellraw @s [{"text":" \n \n \n \n \n \n \n \n \n"},{"text":"[ ——","color":"gray"},{"text":" Infinity Cave","color":"blue","bold":false},{"text":" Settings ","color":"white"},{"text":"—— ]\n","color":"gray"},{"text":"Click on text within the square brackets to toggle between different settings.\n"}] + +tellraw @s [{"text":"㊠ All Custom Items: ","color":"gray"},{"text":"> ["},{"text":"Spawn","color":"green","hoverEvent":{"action":"show_text","value":[{"text":"Spawns all custom\nweapons on the\nfloor","color":"gray"}]},"clickEvent":{"action":"run_command","value":"/loot spawn ~ ~ ~ loot infinity_cave:debug/all"}},{"text":"] <","hoverEvent":{"action":"show_text","value":[{"text":"","color":"gray"}]}}] + +tag @s remove ic.settings \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/hit_entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/hit_entity.mcfunction new file mode 100644 index 0000000..31278d2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/hit_entity.mcfunction @@ -0,0 +1,14 @@ +tag @s add ic.target + +execute if predicate infinity_cave:percent/20 at @s if entity @a[scores={ic.hit_projectile=0},limit=1] run function infinity_cave:abilities/generic/been_shot + +execute at @s if entity @a[scores={ic.amethyst_blade=0},distance=..5,limit=1] run function infinity_cave:mechanics/weapons/amethyst_blade/main + +execute at @s if entity @a[scores={ic.steel_battleaxe=0},distance=..5,limit=1] run function infinity_cave:mechanics/weapons/steel_battleaxe/shield + +execute at @s if entity @a[scores={ic.bastion_piercer=0},distance=..7,limit=1] run function infinity_cave:mechanics/weapons/bastion_piercer/distance + +scoreboard players set #amethyst_1 ic.int 0 +scoreboard players set #amethyst_2 ic.int 0 + +tag @s remove ic.target diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity.mcfunction new file mode 100644 index 0000000..91e72c7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity.mcfunction @@ -0,0 +1,23 @@ +scoreboard players set #found ic.id 0 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit0=false, bit1=false, bit2=false, bit3=false, bit4=false, bit5=false, bit6=false, bit7=false, bit8=false, bit9=false, bit10=false, bit11=false, bit12=false, bit13=false, bit14=false, bit15=false}}] run function infinity_cave:technical/hit_match/player_hurt_entity/setup/as_player +execute unless score #found ic.id matches 0 run advancement revoke @s only infinity_cave:technical/hit_match/player_hurt_entity +execute unless score #found ic.id matches 0 run return 0 +scoreboard players reset #id ic.id +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit0=true}}] run scoreboard players add #id ic.id 1 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit1=true}}] run scoreboard players add #id ic.id 2 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit2=true}}] run scoreboard players add #id ic.id 4 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit3=true}}] run scoreboard players add #id ic.id 8 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit4=true}}] run scoreboard players add #id ic.id 16 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit5=true}}] run scoreboard players add #id ic.id 32 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit6=true}}] run scoreboard players add #id ic.id 64 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit7=true}}] run scoreboard players add #id ic.id 128 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit8=true}}] run scoreboard players add #id ic.id 256 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit9=true}}] run scoreboard players add #id ic.id 512 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit10=true}}] run scoreboard players add #id ic.id 1024 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit11=true}}] run scoreboard players add #id ic.id 2048 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit12=true}}] run scoreboard players add #id ic.id 4096 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit13=true}}] run scoreboard players add #id ic.id 8192 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit14=true}}] run scoreboard players add #id ic.id 16384 +execute if entity @s[advancements={infinity_cave:technical/hit_match/player_hurt_entity={bit15=true}}] run scoreboard players add #id ic.id 32768 +execute as @e[limit=1,predicate=infinity_cave:match_id] run function infinity_cave:technical/hit_match/player_hurt_entity/as_entity +advancement revoke @s only infinity_cave:technical/hit_match/player_hurt_entity \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/as_entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/as_entity.mcfunction new file mode 100644 index 0000000..69107ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/as_entity.mcfunction @@ -0,0 +1,2 @@ +scoreboard players set #found ic.id 1 +function infinity_cave:technical/hit_match/hit_entity \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_entity.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_entity.mcfunction new file mode 100644 index 0000000..c6d0e1b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_entity.mcfunction @@ -0,0 +1,5 @@ +execute if score #found ic.id matches 1 run return -1 +execute on attacker if entity @s[type=player,tag=ic.player] run scoreboard players set #found ic.id 1 +execute if score #found ic.id matches 0 run return -1 +function infinity_cave:technical/hit_match/hit_entity +function infinity_cave:technical/hit_match/player_hurt_entity/setup/setup_id \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_player.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_player.mcfunction new file mode 100644 index 0000000..d1f5d1b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/as_player.mcfunction @@ -0,0 +1,4 @@ +tag @s add ic.player +execute as @e[predicate=infinity_cave:not_setup] run function infinity_cave:technical/hit_match/player_hurt_entity/setup/as_entity +tag @s remove ic.player +execute if score #found ic.id matches 0 run scoreboard players set #found ic.id 2 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/setup_id.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/setup_id.mcfunction new file mode 100644 index 0000000..567ddd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_match/player_hurt_entity/setup/setup_id.mcfunction @@ -0,0 +1,35 @@ +scoreboard players add .global ic.id 1 +execute if score .global ic.id matches 65537.. run scoreboard players set .global ic.id 1 +scoreboard players operation @s ic.id = .global ic.id +scoreboard players operation #id ic.id = .global ic.id +execute if score #id ic.id matches 32768.. run scoreboard players set @s ic.bit15 1 +execute if score #id ic.id matches 32768.. run scoreboard players remove #id ic.id 32768 +execute if score #id ic.id matches 16384.. run scoreboard players set @s ic.bit14 1 +execute if score #id ic.id matches 16384.. run scoreboard players remove #id ic.id 16384 +execute if score #id ic.id matches 8192.. run scoreboard players set @s ic.bit13 1 +execute if score #id ic.id matches 8192.. run scoreboard players remove #id ic.id 8192 +execute if score #id ic.id matches 4096.. run scoreboard players set @s ic.bit12 1 +execute if score #id ic.id matches 4096.. run scoreboard players remove #id ic.id 4096 +execute if score #id ic.id matches 2048.. run scoreboard players set @s ic.bit11 1 +execute if score #id ic.id matches 2048.. run scoreboard players remove #id ic.id 2048 +execute if score #id ic.id matches 1024.. run scoreboard players set @s ic.bit10 1 +execute if score #id ic.id matches 1024.. run scoreboard players remove #id ic.id 1024 +execute if score #id ic.id matches 512.. run scoreboard players set @s ic.bit9 1 +execute if score #id ic.id matches 512.. run scoreboard players remove #id ic.id 512 +execute if score #id ic.id matches 256.. run scoreboard players set @s ic.bit8 1 +execute if score #id ic.id matches 256.. run scoreboard players remove #id ic.id 256 +execute if score #id ic.id matches 128.. run scoreboard players set @s ic.bit7 1 +execute if score #id ic.id matches 128.. run scoreboard players remove #id ic.id 128 +execute if score #id ic.id matches 64.. run scoreboard players set @s ic.bit6 1 +execute if score #id ic.id matches 64.. run scoreboard players remove #id ic.id 64 +execute if score #id ic.id matches 32.. run scoreboard players set @s ic.bit5 1 +execute if score #id ic.id matches 32.. run scoreboard players remove #id ic.id 32 +execute if score #id ic.id matches 16.. run scoreboard players set @s ic.bit4 1 +execute if score #id ic.id matches 16.. run scoreboard players remove #id ic.id 16 +execute if score #id ic.id matches 8.. run scoreboard players set @s ic.bit3 1 +execute if score #id ic.id matches 8.. run scoreboard players remove #id ic.id 8 +execute if score #id ic.id matches 4.. run scoreboard players set @s ic.bit2 1 +execute if score #id ic.id matches 4.. run scoreboard players remove #id ic.id 4 +execute if score #id ic.id matches 2.. run scoreboard players set @s ic.bit1 1 +execute if score #id ic.id matches 2.. run scoreboard players remove #id ic.id 2 +execute if score #id ic.id matches 1.. run scoreboard players set @s ic.bit0 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_projectile.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_projectile.mcfunction new file mode 100644 index 0000000..cb35cae --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/hit_projectile.mcfunction @@ -0,0 +1,3 @@ +scoreboard players set @s ic.hit_projectile 0 + +advancement revoke @s only infinity_cave:technical/hit_projectile \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/math.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/math.mcfunction new file mode 100644 index 0000000..f22ba18 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/math.mcfunction @@ -0,0 +1,9 @@ +function infinity_cave:technical/lcg/math +scoreboard players operation #ic_tmg_temp ic.math = @s ic.math +scoreboard players operation @s ic.math %= #ic_tmg_range ic.math +scoreboard players operation #ic_tmg_temp ic.math -= @s ic.math +scoreboard players operation #ic_tmg_temp ic.math += #ic_tmg_m1 ic.math + +execute if score #ic_tmg_temp ic.math matches ..-1 run function infinity_cave:technical/lcg/next_int + + diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/math2.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/math2.mcfunction new file mode 100644 index 0000000..7f24446 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/math2.mcfunction @@ -0,0 +1,4 @@ +scoreboard players operation #iclcg ic.math *= #iclcg ic.const +scoreboard players add #iclcg ic.math 12345 +scoreboard players set #ic.tmg_in ic.math 7 +scoreboard players operation @s ic.math = #iclcg ic.math \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/next_int.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/next_int.mcfunction new file mode 100644 index 0000000..7cf13f3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/next_int.mcfunction @@ -0,0 +1,7 @@ +function infinity_cave:technical/lcg/math2 + +scoreboard players operation #ic_tmg_temp ic.math = @s ic.math +scoreboard players operation @s ic.math %= #ic_tmg_range ic.math +scoreboard players operation #ic_tmg_temp ic.math -= @s ic.math +scoreboard players operation #ic_tmg_temp ic.math += #ic_tmg_m1 ic.math +execute if score #ic_tmg_temp ic.math matches ..-1 run function infinity_cave:technical/lcg/next_int \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/range.mcfunction b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/range.mcfunction new file mode 100644 index 0000000..bbf2da7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/functions/technical/lcg/range.mcfunction @@ -0,0 +1,16 @@ +scoreboard players add #ic.tmg_in1 ic.math 1 +scoreboard players operation #ic_tmg_range ic.math = #ic.tmg_in1 ic.math +scoreboard players operation #ic_tmg_range ic.math -= #ic.tmg_in ic.math + +scoreboard players operation #ic_tmg_m1 ic.math = #ic_tmg_range ic.math +scoreboard players remove #ic_tmg_m1 ic.math 1 +function infinity_cave:technical/lcg/next_int + +scoreboard players operation @s ic.fish_rate = @s ic.tmg_level +scoreboard players operation @s ic.fish_rate *= #ic1000 ic.const +scoreboard players operation @s ic.fish_rate /= #ic.tmg_in ic.math + +scoreboard players operation @s ic.math += #ic.tmg_in ic.math + +scoreboard players reset #ic_tmg_m1 ic.math +scoreboard players remove #ic.tmg_in1 ic.math 1 \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/common_ench.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/common_ench.json new file mode 100644 index 0000000..3df633d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/common_ench.json @@ -0,0 +1,7 @@ +[ + { + "function": "minecraft:set_damage", + "damage": 0.001, + "add": true + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/durability.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/durability.json new file mode 100644 index 0000000..33bd464 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/durability.json @@ -0,0 +1,145 @@ +[ + { + "function": "minecraft:set_count", + "count": 0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "durability": 1, + "nbt": "{ic:molten_hammer}" + } + } + } + } + ] + }, + { + "function": "minecraft:set_count", + "count": 0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "durability": 1, + "nbt": "{ic:molten_hammer}" + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.33 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 3 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 2 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.67 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 1 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking" + } + ] + } + } + } + } + } + ] + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/durability_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/durability_2.json new file mode 100644 index 0000000..607dcfb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/durability_2.json @@ -0,0 +1,145 @@ +[ + { + "function": "minecraft:set_count", + "count": 0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "durability": 1, + "nbt": "{ic:torpedo_harpoon}" + } + } + } + } + ] + }, + { + "function": "minecraft:set_count", + "count": 0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "durability": 1, + "nbt": "{ic:torpedo_harpoon}" + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.33 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 3 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 2 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.67 + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking", + "levels": 1 + } + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_damage", + "damage": -0.02, + "add": true, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "enchantments": [ + { + "enchantment": "minecraft:unbreaking" + } + ] + } + } + } + } + } + ] + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_1.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_1.json new file mode 100644 index 0000000..7c4d356 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_1.json @@ -0,0 +1,196 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": 10, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:book" + ], + "count": 1 + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 2 + }, + "minecraft:punch": { + "min": 0, + "max": { + "min": 0, + "max": { + "min": 0, + "max": 1 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 2 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:bow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:quick_charge": { + "min": 0, + "max": 1 + }, + "minecraft:piercing": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 1, + "max": 2 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 2 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:crossbow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 2 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:looting": { + "min": 0, + "max": { + "min": 0, + "max": { + "min": 0, + "max": 1 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 2 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:sharpness" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 1, + "max": 2 + }, + "minecraft:fortune": { + "min": 0, + "max": { + "min": 0, + "max": { + "min": 1, + "max": 2 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 2 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:tools" + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_2.json new file mode 100644 index 0000000..3484777 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_2.json @@ -0,0 +1,216 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": 16, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:book" + ], + "count": 1 + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 3 + }, + "minecraft:punch": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 2, + "max": 2 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:bow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:quick_charge": { + "min": 1, + "max": 2 + }, + "minecraft:piercing": { + "min": 1, + "max": { + "min": 2, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:crossbow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:smite": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 1, + "max": 2 + } + } + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 1, + "max": 2 + } + } + }, + "minecraft:looting": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 0, + "max": 2 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:sharpness" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 1, + "max": 3 + }, + "minecraft:fortune": { + "min": 0, + "max": { + "min": 1, + "max": { + "min": 1, + "max": 2 + } + } + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:tools" + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_3.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_3.json new file mode 100644 index 0000000..9fa8b48 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_3.json @@ -0,0 +1,220 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": 26, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:book" + ], + "count": 1 + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": { + "min": 2, + "max": 4 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": { + "min": 2, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:bow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:quick_charge": { + "min": 1, + "max": 3 + }, + "minecraft:piercing": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 3, + "max": 4 + } + } + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:crossbow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 5 + }, + "minecraft:smite": { + "min": 1, + "max": { + "min": 1, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:bane_of_arthropods": { + "min": 1, + "max": { + "min": 1, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:looting": { + "min": 1, + "max": { + "min": 1, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:sharpness" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": { + "min": 1, + "max": { + "min": 2, + "max": 3 + } + } + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:tools" + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_4.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_4.json new file mode 100644 index 0000000..d1eaa25 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_4.json @@ -0,0 +1,232 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": 32, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:book" + ], + "count": 1 + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 4, + "max": 6 + }, + "minecraft:punch": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 4, + "max": 4 + } + } + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 5 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:bow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:quick_charge": { + "min": 2, + "max": 4 + }, + "minecraft:piercing": { + "min": 3, + "max": { + "min": 4, + "max": { + "min": 4, + "max": 5 + } + } + }, + "minecraft:unbreaking": { + "min": 3, + "max": 5 + }, + "minecraft:multishot": { + "min": 0, + "max": 1 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:crossbow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": { + "min": 3, + "max": 4 + }, + "minecraft:blast_protection": { + "min": 1, + "max": 2 + }, + "minecraft:projectile_protection": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 5 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:smite": { + "min": 1, + "max": { + "min": 2, + "max": { + "min": 3, + "max": 4 + } + } + }, + "minecraft:bane_of_arthropods": { + "min": 1, + "max": { + "min": 2, + "max": { + "min": 3, + "max": 4 + } + } + }, + "minecraft:looting": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 3, + "max": 4 + } + } + }, + "minecraft:unbreaking": { + "min": 3, + "max": 5 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:sharpness" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 5, + "max": 7 + }, + "minecraft:fortune": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 3, + "max": 4 + } + } + }, + "minecraft:unbreaking": { + "min": 3, + "max": 5 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:tools" + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_5.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_5.json new file mode 100644 index 0000000..65b56b7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/enchants/tier_5.json @@ -0,0 +1,236 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": 40, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:book" + ], + "count": 1 + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 6, + "max": 7 + }, + "minecraft:punch": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 5, + "max": 6 + } + } + }, + "minecraft:infinity": { + "min": 1, + "max": 1 + }, + "minecraft:mending": { + "min": 1, + "max": 1 + }, + "minecraft:unbreaking": { + "min": 6, + "max": 10 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:bow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:quick_charge": { + "min": 3, + "max": 5 + }, + "minecraft:piercing": { + "min": 4, + "max": { + "min": 7, + "max": { + "min": 8, + "max": 10 + } + } + }, + "minecraft:unbreaking": { + "min": 6, + "max": 10 + }, + "minecraft:multishot": { + "min": 1, + "max": 1 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:crossbow" + ] + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": { + "min": 4, + "max": 4 + }, + "minecraft:blast_protection": { + "min": 2, + "max": 4 + }, + "minecraft:projectile_protection": { + "min": 2, + "max": 4 + }, + "minecraft:unbreaking": { + "min": 4, + "max": 10 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 6, + "max": 10 + }, + "minecraft:smite": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 4, + "max": 5 + } + } + }, + "minecraft:bane_of_arthropods": { + "min": 2, + "max": { + "min": 3, + "max": { + "min": 4, + "max": 5 + } + } + }, + "minecraft:looting": { + "min": 3, + "max": { + "min": 4, + "max": { + "min": 5, + "max": 6 + } + } + }, + "minecraft:unbreaking": { + "min": 4, + "max": 10 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:sharpness" + } + } + } + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 6, + "max": 9 + }, + "minecraft:fortune": { + "min": 3, + "max": { + "min": 4, + "max": { + "min": 5, + "max": 6 + } + } + }, + "minecraft:unbreaking": { + "min": 6, + "max": 10 + } + }, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:tools" + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/epic_ench.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/epic_ench.json new file mode 100644 index 0000000..6d0ed27 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/epic_ench.json @@ -0,0 +1,16 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 18, + "max": { + "min": 26, + "max": { + "min": 27, + "max": 29 + } + } + } + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/fix.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/fix.json new file mode 100644 index 0000000..300798b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/fix.json @@ -0,0 +1,8 @@ +[ + { + "function": "minecraft:set_damage", + "damage": 0.075, + "add": true + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/full_fix.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/full_fix.json new file mode 100644 index 0000000..c9972f1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/full_fix.json @@ -0,0 +1,7 @@ +[ + { + "function": "minecraft:set_damage", + "damage": 1 + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/legendary_ench.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/legendary_ench.json new file mode 100644 index 0000000..1d28ee4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/legendary_ench.json @@ -0,0 +1,16 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 25, + "max": { + "min": 32, + "max": { + "min": 33, + "max": 50 + } + } + } + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/rare_ench.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/rare_ench.json new file mode 100644 index 0000000..82aaf68 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/rare_ench.json @@ -0,0 +1,16 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 14, + "max": { + "min": 22, + "max": { + "min": 23, + "max": 26 + } + } + } + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/set_count.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/set_count.json new file mode 100644 index 0000000..dea9caa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/set_count.json @@ -0,0 +1,7 @@ +[ + { + "function": "minecraft:set_count", + "count": 0, + "add": true + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/set_count_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/set_count_2.json new file mode 100644 index 0000000..8448ade --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/set_count_2.json @@ -0,0 +1,8 @@ +[ + { + "function": "minecraft:set_count", + "count": 1, + "add": true + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/set_less.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/set_less.json new file mode 100644 index 0000000..a1f2c2a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/set_less.json @@ -0,0 +1,7 @@ +[ + { + "function": "minecraft:set_count", + "count": -1, + "add": true + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/uncommon_ench.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/uncommon_ench.json new file mode 100644 index 0000000..c2fc08c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/item_modifiers/uncommon_ench.json @@ -0,0 +1,16 @@ +[ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 8, + "max": { + "min": 18, + "max": { + "min": 19, + "max": 26 + } + } + } + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/drowned.json new file mode 100644 index 0000000..967d9d0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/enderman.json new file mode 100644 index 0000000..8e8dbbc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/iron_golem.json new file mode 100644 index 0000000..288f4d0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/pillager.json new file mode 100644 index 0000000..b00b8d8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/ravager.json new file mode 100644 index 0000000..a5f85b2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/skeleton.json new file mode 100644 index 0000000..3e49ea7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/slime.json new file mode 100644 index 0000000..42eb002 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/spider.json new file mode 100644 index 0000000..5918773 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/vindicator.json new file mode 100644 index 0000000..e550367 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/wither_skeleton.json new file mode 100644 index 0000000..141fed2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/zombie.json new file mode 100644 index 0000000..7ab8a84 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/zombified_piglin.json new file mode 100644 index 0000000..f8e3225 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/creeper.json new file mode 100644 index 0000000..fb1dec6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/drowned.json new file mode 100644 index 0000000..bd8c801 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/enderman.json new file mode 100644 index 0000000..012da03 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/evoker.json new file mode 100644 index 0000000..6a721be --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/iron_golem.json new file mode 100644 index 0000000..7f83151 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/pillager.json new file mode 100644 index 0000000..600fb4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/ravager.json new file mode 100644 index 0000000..73023e9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/skeleton.json new file mode 100644 index 0000000..bd350ca --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/slime.json new file mode 100644 index 0000000..d34a2b0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/spider.json new file mode 100644 index 0000000..91e31ed --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/vindicator.json new file mode 100644 index 0000000..58f8341 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/witch.json new file mode 100644 index 0000000..0a234bf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/wither_skeleton.json new file mode 100644 index 0000000..ce4c96b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/zombie.json new file mode 100644 index 0000000..4cb55d4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/zombified_piglin.json new file mode 100644 index 0000000..818fa48 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/creeper.json new file mode 100644 index 0000000..6ae4563 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/drowned.json new file mode 100644 index 0000000..7640c11 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/drowned.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/enderman.json new file mode 100644 index 0000000..d7b1421 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/enderman.json @@ -0,0 +1,180 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/evoker.json new file mode 100644 index 0000000..e986b5a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/iron_golem.json new file mode 100644 index 0000000..1e828a9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/pillager.json new file mode 100644 index 0000000..d125dd8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/pillager.json @@ -0,0 +1,78 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/ravager.json new file mode 100644 index 0000000..8791e9c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/skeleton.json new file mode 100644 index 0000000..7612b49 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/skeleton.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/slime.json new file mode 100644 index 0000000..6afeeee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/spider.json new file mode 100644 index 0000000..6610f50 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/vindicator.json new file mode 100644 index 0000000..f51e14d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/witch.json new file mode 100644 index 0000000..07e6729 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/wither_skeleton.json new file mode 100644 index 0000000..3294bba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/zombie.json new file mode 100644 index 0000000..cc12f51 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/zombified_piglin.json new file mode 100644 index 0000000..91d234c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/amethyst/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/drowned.json new file mode 100644 index 0000000..e192ac8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/enderman.json new file mode 100644 index 0000000..378b533 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/evoker.json new file mode 100644 index 0000000..8ce1849 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/iron_golem.json new file mode 100644 index 0000000..8a4efae --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/pillager.json new file mode 100644 index 0000000..b620341 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/ravager.json new file mode 100644 index 0000000..bb4c4fe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/skeleton.json new file mode 100644 index 0000000..b670c7b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/slime.json new file mode 100644 index 0000000..9eb6b5a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/spider.json new file mode 100644 index 0000000..757fbf5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/vindicator.json new file mode 100644 index 0000000..ae35c55 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/witch.json new file mode 100644 index 0000000..a474c97 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/wither_skeleton.json new file mode 100644 index 0000000..b155480 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/zombie.json new file mode 100644 index 0000000..5b5e608 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/zombified_piglin.json new file mode 100644 index 0000000..50a837e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/drowned.json new file mode 100644 index 0000000..f589e00 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/enderman.json new file mode 100644 index 0000000..aba39d0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/iron_golem.json new file mode 100644 index 0000000..cdb414b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/pillager.json new file mode 100644 index 0000000..d14c6fa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/ravager.json new file mode 100644 index 0000000..e151635 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/skeleton.json new file mode 100644 index 0000000..aff9f0b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/slime.json new file mode 100644 index 0000000..f989096 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/spider.json new file mode 100644 index 0000000..43c8c61 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/vindicator.json new file mode 100644 index 0000000..40414b7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/wither_skeleton.json new file mode 100644 index 0000000..ae07de1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/zombie.json new file mode 100644 index 0000000..60d7a22 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/zombified_piglin.json new file mode 100644 index 0000000..d0a5db8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/amethyst/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/amethyst/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/debug/all.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/debug/all.json new file mode 100644 index 0000000..477355e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/debug/all.json @@ -0,0 +1,577 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:1,ic:sonic_bow}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Supersonic Bow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Bow is chargable and will gain ", + "color": "gray", + "italic": false + }, + { + "text": "momentum the longer charged ", + "color": "gray", + "italic": false + }, + { + "text": "gaining pierce at charge level ", + "color": "gray", + "italic": false + }, + { + "text": "2 or higher. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "If an emnemy is close while ", + "color": "gray", + "italic": false + }, + { + "text": "shooting a charged shot, an ", + "color": "gray", + "italic": false + }, + { + "text": "explosion occurs instead. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brush", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crossbow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:1,ic:icicle_crossbow}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Icicle Crossbow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Projectiles travel 3 times", + "color": "gray", + "italic": false + }, + { + "text": "faster, dealing more damage. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/drowned.json new file mode 100644 index 0000000..90f1977 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/enderman.json new file mode 100644 index 0000000..06bd416 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/enderman.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/iron_golem.json new file mode 100644 index 0000000..e8a9b56 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/iron_golem.json @@ -0,0 +1,61 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/pillager.json new file mode 100644 index 0000000..724c7c4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/pillager.json @@ -0,0 +1,61 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/ravager.json new file mode 100644 index 0000000..252a256 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/skeleton.json new file mode 100644 index 0000000..81f5637 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/slime.json new file mode 100644 index 0000000..18d0a12 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/slime.json @@ -0,0 +1,363 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/spider.json new file mode 100644 index 0000000..5b382ea --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/vindicator.json new file mode 100644 index 0000000..58af992 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/wither_skeleton.json new file mode 100644 index 0000000..9494b9f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/wither_skeleton.json @@ -0,0 +1,97 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/zombie.json new file mode 100644 index 0000000..950dd73 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/zombified_piglin.json new file mode 100644 index 0000000..47a61b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/creeper.json new file mode 100644 index 0000000..b04e090 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/drowned.json new file mode 100644 index 0000000..7d53113 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/enderman.json new file mode 100644 index 0000000..696cf32 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/evoker.json new file mode 100644 index 0000000..6e6a554 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/iron_golem.json new file mode 100644 index 0000000..ecb90cf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/pillager.json new file mode 100644 index 0000000..4a44e91 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/ravager.json new file mode 100644 index 0000000..0e0958f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/skeleton.json new file mode 100644 index 0000000..5300364 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/slime.json new file mode 100644 index 0000000..ac14aa1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/spider.json new file mode 100644 index 0000000..81a3696 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/vindicator.json new file mode 100644 index 0000000..3d13cfe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/witch.json new file mode 100644 index 0000000..fad8358 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/witch.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/wither_skeleton.json new file mode 100644 index 0000000..9c02c9e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/zombie.json new file mode 100644 index 0000000..1ec970f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/zombified_piglin.json new file mode 100644 index 0000000..11d2b62 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/creeper.json new file mode 100644 index 0000000..a1518a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/drowned.json new file mode 100644 index 0000000..40e55f3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/drowned.json @@ -0,0 +1,154 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/enderman.json new file mode 100644 index 0000000..1d3e1c9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/enderman.json @@ -0,0 +1,180 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/evoker.json new file mode 100644 index 0000000..458dda5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/iron_golem.json new file mode 100644 index 0000000..9c8dbdf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/pillager.json new file mode 100644 index 0000000..e307059 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/pillager.json @@ -0,0 +1,151 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:bow", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:sonic_bow}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Supersonic Bow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Bow is chargable and will gain ", + "color": "gray", + "italic": false + }, + { + "text": "momentum the longer charged ", + "color": "gray", + "italic": false + }, + { + "text": "gaining pierce at charge level ", + "color": "gray", + "italic": false + }, + { + "text": "2 or higher. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "If an emnemy is close while ", + "color": "gray", + "italic": false + }, + { + "text": "shooting a charged shot, an ", + "color": "gray", + "italic": false + }, + { + "text": "explosion occurs instead. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/ravager.json new file mode 100644 index 0000000..ea798ff --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/skeleton.json new file mode 100644 index 0000000..08f7d2b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/skeleton.json @@ -0,0 +1,164 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:bow", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:sonic_bow}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Supersonic Bow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Bow is chargable and will gain ", + "color": "gray", + "italic": false + }, + { + "text": "momentum the longer charged ", + "color": "gray", + "italic": false + }, + { + "text": "gaining pierce at charge level ", + "color": "gray", + "italic": false + }, + { + "text": "2 or higher. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "If an emnemy is close while ", + "color": "gray", + "italic": false + }, + { + "text": "shooting a charged shot, an ", + "color": "gray", + "italic": false + }, + { + "text": "explosion occurs instead. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/slime.json new file mode 100644 index 0000000..ceb5666 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/spider.json new file mode 100644 index 0000000..8dbee49 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/vindicator.json new file mode 100644 index 0000000..ee3fcaf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/witch.json new file mode 100644 index 0000000..f90874b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/wither_skeleton.json new file mode 100644 index 0000000..89b43f6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/zombie.json new file mode 100644 index 0000000..a458bf6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/zombified_piglin.json new file mode 100644 index 0000000..16fa6f9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deep_dark/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/drowned.json new file mode 100644 index 0000000..a4c3ed3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/enderman.json new file mode 100644 index 0000000..51010ba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/evoker.json new file mode 100644 index 0000000..80c2186 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/iron_golem.json new file mode 100644 index 0000000..dc960d7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/pillager.json new file mode 100644 index 0000000..1935fec --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/ravager.json new file mode 100644 index 0000000..339abdf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/skeleton.json new file mode 100644 index 0000000..003f07a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/slime.json new file mode 100644 index 0000000..65b9ccf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/spider.json new file mode 100644 index 0000000..38eac80 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/vindicator.json new file mode 100644 index 0000000..230e996 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/witch.json new file mode 100644 index 0000000..abb127c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/wither_skeleton.json new file mode 100644 index 0000000..b3b586d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/zombie.json new file mode 100644 index 0000000..3b6f4e6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/zombified_piglin.json new file mode 100644 index 0000000..8d2239b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/drowned.json new file mode 100644 index 0000000..e850030 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/enderman.json new file mode 100644 index 0000000..bbeef5f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/iron_golem.json new file mode 100644 index 0000000..9fc882b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/pillager.json new file mode 100644 index 0000000..ad54d2a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/ravager.json new file mode 100644 index 0000000..e05749a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/skeleton.json new file mode 100644 index 0000000..a03c00f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/slime.json new file mode 100644 index 0000000..066fd1e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/spider.json new file mode 100644 index 0000000..2e2830d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/vindicator.json new file mode 100644 index 0000000..65faa5b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/wither_skeleton.json new file mode 100644 index 0000000..310c263 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/zombie.json new file mode 100644 index 0000000..bff755b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/zombified_piglin.json new file mode 100644 index 0000000..6686f61 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deep_dark/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deep_dark/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/drowned.json new file mode 100644 index 0000000..add4684 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/enderman.json new file mode 100644 index 0000000..2318ace --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/iron_golem.json new file mode 100644 index 0000000..d3c5619 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/pillager.json new file mode 100644 index 0000000..384b5fc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/ravager.json new file mode 100644 index 0000000..96ad04d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/skeleton.json new file mode 100644 index 0000000..275fe33 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/slime.json new file mode 100644 index 0000000..43db11c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/spider.json new file mode 100644 index 0000000..76223d7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/vindicator.json new file mode 100644 index 0000000..115b99d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/wither_skeleton.json new file mode 100644 index 0000000..1003858 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/zombie.json new file mode 100644 index 0000000..ee3a618 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/zombified_piglin.json new file mode 100644 index 0000000..0cf18c0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/creeper.json new file mode 100644 index 0000000..0fcd8f8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/drowned.json new file mode 100644 index 0000000..badb280 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/enderman.json new file mode 100644 index 0000000..44718b2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/evoker.json new file mode 100644 index 0000000..b0d78d5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/iron_golem.json new file mode 100644 index 0000000..376003e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/pillager.json new file mode 100644 index 0000000..3fc7b05 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/ravager.json new file mode 100644 index 0000000..c562ab9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/skeleton.json new file mode 100644 index 0000000..caec81b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/slime.json new file mode 100644 index 0000000..aa27d90 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/spider.json new file mode 100644 index 0000000..867f3d1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/vindicator.json new file mode 100644 index 0000000..a0bffe2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/witch.json new file mode 100644 index 0000000..af8e849 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/witch.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/wither_skeleton.json new file mode 100644 index 0000000..ba5a214 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/zombie.json new file mode 100644 index 0000000..483cbe4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/zombified_piglin.json new file mode 100644 index 0000000..5b3caf3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/creeper.json new file mode 100644 index 0000000..02d7ebc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/drowned.json new file mode 100644 index 0000000..8438285 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/drowned.json @@ -0,0 +1,154 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/enderman.json new file mode 100644 index 0000000..118122d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/enderman.json @@ -0,0 +1,179 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/evoker.json new file mode 100644 index 0000000..6f5877b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/iron_golem.json new file mode 100644 index 0000000..2dedfd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/pillager.json new file mode 100644 index 0000000..0c1ce2f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/pillager.json @@ -0,0 +1,78 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/ravager.json new file mode 100644 index 0000000..4c87f2c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/skeleton.json new file mode 100644 index 0000000..13e2716 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/skeleton.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/slime.json new file mode 100644 index 0000000..228290b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/spider.json new file mode 100644 index 0000000..599e894 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/vindicator.json new file mode 100644 index 0000000..90cbe7b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/witch.json new file mode 100644 index 0000000..f7cd2a0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/wither_skeleton.json new file mode 100644 index 0000000..3a5427c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/zombie.json new file mode 100644 index 0000000..4a7445a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/zombified_piglin.json new file mode 100644 index 0000000..f8421dc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/deeprock/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/drowned.json new file mode 100644 index 0000000..02e4437 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/enderman.json new file mode 100644 index 0000000..3f2d336 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/evoker.json new file mode 100644 index 0000000..9acd901 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/iron_golem.json new file mode 100644 index 0000000..0f432c8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/pillager.json new file mode 100644 index 0000000..b4b9abc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/ravager.json new file mode 100644 index 0000000..bf54ada --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/skeleton.json new file mode 100644 index 0000000..c1d522a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/slime.json new file mode 100644 index 0000000..3758bd7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/spider.json new file mode 100644 index 0000000..920386b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/vindicator.json new file mode 100644 index 0000000..b0944c1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/witch.json new file mode 100644 index 0000000..36f2997 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/wither_skeleton.json new file mode 100644 index 0000000..6af6459 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/zombie.json new file mode 100644 index 0000000..461f0ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/zombified_piglin.json new file mode 100644 index 0000000..d490e2a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/drowned.json new file mode 100644 index 0000000..c9ec49f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/enderman.json new file mode 100644 index 0000000..768d744 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/iron_golem.json new file mode 100644 index 0000000..006d92b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/pillager.json new file mode 100644 index 0000000..b39ce7a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/ravager.json new file mode 100644 index 0000000..8bae664 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/skeleton.json new file mode 100644 index 0000000..0ab9944 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/slime.json new file mode 100644 index 0000000..1701433 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/spider.json new file mode 100644 index 0000000..a2cd5d7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/vindicator.json new file mode 100644 index 0000000..2499123 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/wither_skeleton.json new file mode 100644 index 0000000..60ae240 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/zombie.json new file mode 100644 index 0000000..64c0833 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/zombified_piglin.json new file mode 100644 index 0000000..777d7d2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/deeprock/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/deeprock/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/drowned.json new file mode 100644 index 0000000..339f246 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/enderman.json new file mode 100644 index 0000000..531cbf3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/iron_golem.json new file mode 100644 index 0000000..95777b0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/pillager.json new file mode 100644 index 0000000..27a02d0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/ravager.json new file mode 100644 index 0000000..c1bdb6f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/skeleton.json new file mode 100644 index 0000000..c23bbb4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/slime.json new file mode 100644 index 0000000..d01867f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/spider.json new file mode 100644 index 0000000..18eed3f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/vindicator.json new file mode 100644 index 0000000..e361a3f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/wither_skeleton.json new file mode 100644 index 0000000..883466e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/zombie.json new file mode 100644 index 0000000..ab9ff2f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/zombified_piglin.json new file mode 100644 index 0000000..c290419 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/creeper.json new file mode 100644 index 0000000..ffe5df8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/drowned.json new file mode 100644 index 0000000..493a65b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/enderman.json new file mode 100644 index 0000000..cafa3be --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/evoker.json new file mode 100644 index 0000000..7b661ad --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/iron_golem.json new file mode 100644 index 0000000..dfa28b6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/pillager.json new file mode 100644 index 0000000..2b7f22b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/ravager.json new file mode 100644 index 0000000..28d95ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/skeleton.json new file mode 100644 index 0000000..e7b0cae --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/slime.json new file mode 100644 index 0000000..c50f287 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/spider.json new file mode 100644 index 0000000..0b9c274 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/vindicator.json new file mode 100644 index 0000000..bf1dc1d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/witch.json new file mode 100644 index 0000000..bb0a6f9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/witch.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/wither_skeleton.json new file mode 100644 index 0000000..a7c2fc7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/zombie.json new file mode 100644 index 0000000..34b3c26 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/zombified_piglin.json new file mode 100644 index 0000000..4668e96 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/creeper.json new file mode 100644 index 0000000..33d6ca1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/drowned.json new file mode 100644 index 0000000..6e0f027 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/drowned.json @@ -0,0 +1,154 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/enderman.json new file mode 100644 index 0000000..8a1ce8a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/enderman.json @@ -0,0 +1,180 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/evoker.json new file mode 100644 index 0000000..a802d38 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/iron_golem.json new file mode 100644 index 0000000..6aff35a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/pillager.json new file mode 100644 index 0000000..7d6011f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/pillager.json @@ -0,0 +1,149 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:crossbow", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:icicle_crossbow}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Icicle Crossbow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Projectiles travel 3 times", + "color": "gray", + "italic": false + }, + { + "text": "faster, dealing more damage. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:diamond", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/ravager.json new file mode 100644 index 0000000..10990ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/skeleton.json new file mode 100644 index 0000000..b2dd992 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/skeleton.json @@ -0,0 +1,134 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:crossbow", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:icicle_crossbow}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Icicle Crossbow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Projectiles travel 3 times", + "color": "gray", + "italic": false + }, + { + "text": "faster, dealing more damage. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/slime.json new file mode 100644 index 0000000..a498e16 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/spider.json new file mode 100644 index 0000000..9b8f153 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/vindicator.json new file mode 100644 index 0000000..137f633 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/witch.json new file mode 100644 index 0000000..6e0c388 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/wither_skeleton.json new file mode 100644 index 0000000..84beb91 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/zombie.json new file mode 100644 index 0000000..acbfd5f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/zombified_piglin.json new file mode 100644 index 0000000..3b92478 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/frozen/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/drowned.json new file mode 100644 index 0000000..e2eb199 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/enderman.json new file mode 100644 index 0000000..a9bebb6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/evoker.json new file mode 100644 index 0000000..50fde53 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/iron_golem.json new file mode 100644 index 0000000..a0c957e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/pillager.json new file mode 100644 index 0000000..5c6f140 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/ravager.json new file mode 100644 index 0000000..f7ec961 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/skeleton.json new file mode 100644 index 0000000..022b535 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/slime.json new file mode 100644 index 0000000..7a48dd6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/spider.json new file mode 100644 index 0000000..395f83e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/vindicator.json new file mode 100644 index 0000000..7255c0a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/witch.json new file mode 100644 index 0000000..8651fd1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/wither_skeleton.json new file mode 100644 index 0000000..7d7ea93 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/zombie.json new file mode 100644 index 0000000..485eb52 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/zombified_piglin.json new file mode 100644 index 0000000..334e975 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/drowned.json new file mode 100644 index 0000000..7ca0b89 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/enderman.json new file mode 100644 index 0000000..24a70e3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/iron_golem.json new file mode 100644 index 0000000..d115537 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/pillager.json new file mode 100644 index 0000000..1cee3f2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/ravager.json new file mode 100644 index 0000000..3d2e538 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/skeleton.json new file mode 100644 index 0000000..5b5ad4f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/slime.json new file mode 100644 index 0000000..8557b9b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/spider.json new file mode 100644 index 0000000..d3dd8d6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/vindicator.json new file mode 100644 index 0000000..f1f403e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/wither_skeleton.json new file mode 100644 index 0000000..e82e52a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/zombie.json new file mode 100644 index 0000000..01dc8b2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/zombified_piglin.json new file mode 100644 index 0000000..317498b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/frozen/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/frozen/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/drowned.json new file mode 100644 index 0000000..5e7ea16 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/enderman.json new file mode 100644 index 0000000..3986a41 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/iron_golem.json new file mode 100644 index 0000000..f933658 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/pillager.json new file mode 100644 index 0000000..38e1c35 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/ravager.json new file mode 100644 index 0000000..cded5ac --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/skeleton.json new file mode 100644 index 0000000..c5ac506 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/slime.json new file mode 100644 index 0000000..92123e2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/spider.json new file mode 100644 index 0000000..22f4cf0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/vindicator.json new file mode 100644 index 0000000..3ddee79 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/wither_skeleton.json new file mode 100644 index 0000000..2157b85 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/zombie.json new file mode 100644 index 0000000..1e07f9d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/zombified_piglin.json new file mode 100644 index 0000000..f0899d6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/creeper.json new file mode 100644 index 0000000..b4333c1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/drowned.json new file mode 100644 index 0000000..cd72d96 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/enderman.json new file mode 100644 index 0000000..2a5e3ed --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/evoker.json new file mode 100644 index 0000000..3cf5751 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/iron_golem.json new file mode 100644 index 0000000..8ed5f82 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/pillager.json new file mode 100644 index 0000000..fbdffe2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/ravager.json new file mode 100644 index 0000000..b598d41 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/skeleton.json new file mode 100644 index 0000000..837a7ad --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/slime.json new file mode 100644 index 0000000..feae7a3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/spider.json new file mode 100644 index 0000000..3597321 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/vindicator.json new file mode 100644 index 0000000..e4bc2cf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/witch.json new file mode 100644 index 0000000..db92885 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/wither_skeleton.json new file mode 100644 index 0000000..00661a9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/zombie.json new file mode 100644 index 0000000..e7d49bd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/zombified_piglin.json new file mode 100644 index 0000000..a21b0a6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/creeper.json new file mode 100644 index 0000000..4099087 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/drowned.json new file mode 100644 index 0000000..d8a36dc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/drowned.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/enderman.json new file mode 100644 index 0000000..129230e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/enderman.json @@ -0,0 +1,180 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:limestone_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "limestone Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/evoker.json new file mode 100644 index 0000000..3e533b7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/iron_golem.json new file mode 100644 index 0000000..32a41fe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/pillager.json new file mode 100644 index 0000000..9eaed52 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/pillager.json @@ -0,0 +1,78 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/ravager.json new file mode 100644 index 0000000..590f4b6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/skeleton.json new file mode 100644 index 0000000..2c5fd4a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/skeleton.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/slime.json new file mode 100644 index 0000000..c3d6db7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/spider.json new file mode 100644 index 0000000..e941f1d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/vindicator.json new file mode 100644 index 0000000..c687ca5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/witch.json new file mode 100644 index 0000000..aa78eb7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/wither_skeleton.json new file mode 100644 index 0000000..3c9abc9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/zombie.json new file mode 100644 index 0000000..67b4cca --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/zombified_piglin.json new file mode 100644 index 0000000..697f7d4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/limestone/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/drowned.json new file mode 100644 index 0000000..3d3a72a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/enderman.json new file mode 100644 index 0000000..300c05f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/evoker.json new file mode 100644 index 0000000..a3ca48a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/iron_golem.json new file mode 100644 index 0000000..de32d76 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/pillager.json new file mode 100644 index 0000000..a286b8f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/ravager.json new file mode 100644 index 0000000..3790da8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/skeleton.json new file mode 100644 index 0000000..6802756 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/slime.json new file mode 100644 index 0000000..bf1ea47 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/spider.json new file mode 100644 index 0000000..65bc087 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/vindicator.json new file mode 100644 index 0000000..5e70e4b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/witch.json new file mode 100644 index 0000000..17cca10 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/wither_skeleton.json new file mode 100644 index 0000000..9e5f715 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/zombie.json new file mode 100644 index 0000000..0b0ccdd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/zombified_piglin.json new file mode 100644 index 0000000..d7c1880 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/drowned.json new file mode 100644 index 0000000..c265656 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/enderman.json new file mode 100644 index 0000000..0ae09e1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/iron_golem.json new file mode 100644 index 0000000..0a2a60c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/pillager.json new file mode 100644 index 0000000..f0eaeac --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/ravager.json new file mode 100644 index 0000000..ff28a22 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/skeleton.json new file mode 100644 index 0000000..2fbbce5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/slime.json new file mode 100644 index 0000000..17f7e5c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/spider.json new file mode 100644 index 0000000..0ded98a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/vindicator.json new file mode 100644 index 0000000..d32dfb5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/wither_skeleton.json new file mode 100644 index 0000000..3009358 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/zombie.json new file mode 100644 index 0000000..3d52e52 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/zombified_piglin.json new file mode 100644 index 0000000..89e2709 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/limestone/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/limestone/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/drowned.json new file mode 100644 index 0000000..64d0aa8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/enderman.json new file mode 100644 index 0000000..6677a89 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/iron_golem.json new file mode 100644 index 0000000..d6d8a10 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/pillager.json new file mode 100644 index 0000000..f22deaa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/pillager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/ravager.json new file mode 100644 index 0000000..dddc812 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/skeleton.json new file mode 100644 index 0000000..9367b24 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/slime.json new file mode 100644 index 0000000..9175b13 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/spider.json new file mode 100644 index 0000000..a3f06b8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/vindicator.json new file mode 100644 index 0000000..ee8dfb2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/wither_skeleton.json new file mode 100644 index 0000000..5f2c7fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/zombie.json new file mode 100644 index 0000000..426cb2e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/zombified_piglin.json new file mode 100644 index 0000000..ae9cfd5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/creeper.json new file mode 100644 index 0000000..b3d5aaa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/drowned.json new file mode 100644 index 0000000..2a26cb8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/enderman.json new file mode 100644 index 0000000..a287f24 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/evoker.json new file mode 100644 index 0000000..242318a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/iron_golem.json new file mode 100644 index 0000000..6560b19 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/pillager.json new file mode 100644 index 0000000..e664fc5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/ravager.json new file mode 100644 index 0000000..1d69b53 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/skeleton.json new file mode 100644 index 0000000..a77c3dd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/slime.json new file mode 100644 index 0000000..aec96d5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/spider.json new file mode 100644 index 0000000..ed2fc07 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/vindicator.json new file mode 100644 index 0000000..09dc097 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/witch.json new file mode 100644 index 0000000..b427664 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/witch.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/wither_skeleton.json new file mode 100644 index 0000000..e453434 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/zombie.json new file mode 100644 index 0000000..63b9cb5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/zombified_piglin.json new file mode 100644 index 0000000..d4662ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/creeper.json new file mode 100644 index 0000000..c6e18c7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/drowned.json new file mode 100644 index 0000000..3b78942 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/drowned.json @@ -0,0 +1,154 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:thunder_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/enderman.json new file mode 100644 index 0000000..a4df794 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/enderman.json @@ -0,0 +1,179 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/evoker.json new file mode 100644 index 0000000..a545084 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/iron_golem.json new file mode 100644 index 0000000..5104cfe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/iron_golem.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:diamond", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/pillager.json new file mode 100644 index 0000000..9a9d71f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/pillager.json @@ -0,0 +1,78 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/ravager.json new file mode 100644 index 0000000..efc8ded --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/skeleton.json new file mode 100644 index 0000000..155a474 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/skeleton.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/slime.json new file mode 100644 index 0000000..0880dba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/spider.json new file mode 100644 index 0000000..14bdee5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/vindicator.json new file mode 100644 index 0000000..6e5087b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/vindicator.json @@ -0,0 +1,158 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/witch.json new file mode 100644 index 0000000..8d201b1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/wither_skeleton.json new file mode 100644 index 0000000..8deabea --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/wither_skeleton.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/zombie.json new file mode 100644 index 0000000..3c4a0c3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/zombified_piglin.json new file mode 100644 index 0000000..9b5a9e9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/legendary/zombified_piglin.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/molten/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/drowned.json new file mode 100644 index 0000000..1860fed --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/enderman.json new file mode 100644 index 0000000..e926354 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/evoker.json new file mode 100644 index 0000000..0485e3f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/iron_golem.json new file mode 100644 index 0000000..ae0f3d8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/pillager.json new file mode 100644 index 0000000..9c81d25 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/ravager.json new file mode 100644 index 0000000..9b74d96 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/skeleton.json new file mode 100644 index 0000000..604da21 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/slime.json new file mode 100644 index 0000000..bf908f6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/spider.json new file mode 100644 index 0000000..e9c625e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/vindicator.json new file mode 100644 index 0000000..fa9db4e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/witch.json new file mode 100644 index 0000000..3b2f7bf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/wither_skeleton.json new file mode 100644 index 0000000..6746671 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/zombie.json new file mode 100644 index 0000000..caf82c2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/zombified_piglin.json new file mode 100644 index 0000000..19d7ee0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/drowned.json new file mode 100644 index 0000000..a7a67ba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/enderman.json new file mode 100644 index 0000000..185da46 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/iron_golem.json new file mode 100644 index 0000000..4749b55 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/pillager.json new file mode 100644 index 0000000..84955ea --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/ravager.json new file mode 100644 index 0000000..5e8cd6b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/skeleton.json new file mode 100644 index 0000000..ee9cd23 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/slime.json new file mode 100644 index 0000000..10147a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/spider.json new file mode 100644 index 0000000..bb907a2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/vindicator.json new file mode 100644 index 0000000..30ade69 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/wither_skeleton.json new file mode 100644 index 0000000..a677b9d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/zombie.json new file mode 100644 index 0000000..0d39fcc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/zombified_piglin.json new file mode 100644 index 0000000..fe9ce02 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/molten/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/molten/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/common.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/common.json new file mode 100644 index 0000000..c773623 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/common.json @@ -0,0 +1,34 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:chorus_fruit" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:amethyst_shard", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/epic.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/epic.json new file mode 100644 index 0000000..55a9ac8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/epic.json @@ -0,0 +1,117 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:chorus_fruit", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:enchanted_chorus_fruit,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "entity": "this", + "name": [ + { + "text": "Enchanted Chorus Fruit", + "color": "light_purple", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "set_nbt", + "tag": "{ic:rc,rc:magic_repair,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Magic Repair", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to fully repair ", + "color": "gray", + "italic": false + }, + { + "text": "the armor you are wearing. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 28, + "max": 40 + }, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/legendary.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/legendary.json new file mode 100644 index 0000000..ade4189 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/legendary.json @@ -0,0 +1,126 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:chorus_fruit", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:enchanted_chorus_fruit,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "entity": "this", + "name": [ + { + "text": "Enchanted Chorus Fruit", + "color": "light_purple", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:magic_repair,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Magic Repair", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to fully repair ", + "color": "gray", + "italic": false + }, + { + "text": "the armor you are wearing. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 50, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/rare.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/rare.json new file mode 100644 index 0000000..64da5bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/rare.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:chorus_fruit", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:spyglass", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:magic_spyglass,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Magic Spyglass", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Looking at a mob will ", + "color": "gray", + "italic": false + }, + { + "text": "return its health. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/uncommon.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/uncommon.json new file mode 100644 index 0000000..6ce5d3f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/amethyst/uncommon.json @@ -0,0 +1,58 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:chorus_fruit", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:chorus_plant" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 6, + "max": 12 + }, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:end_stone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/common_gear.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/common_gear.json new file mode 100644 index 0000000..2e318c7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/common_gear.json @@ -0,0 +1,194 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:rc,rc:enchant,ec:1}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier I", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 6 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_helmet", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_chestplate", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_leggings", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_boots", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_sword", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_axe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 6, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.0125 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/common.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/common.json new file mode 100644 index 0000000..a0cc57d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/common.json @@ -0,0 +1,43 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:echo_shard" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:sculk", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/epic.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/epic.json new file mode 100644 index 0000000..b67a28f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/epic.json @@ -0,0 +1,105 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:strong_strength" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_scrap", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:echo_shard", + "functions": [ + { + "function": "minecraft:set_name", + "entity": "this", + "name": { + "text": "Darkness Cleanse", + "color": "aqua", + "italic": false + } + }, + { + "function": "minecraft:set_lore", + "entity": "this", + "lore": [ + { + "text": "Clears the user of Darkness, ", + "color": "gray", + "italic": false + }, + { + "text": "consumes the item on use. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:darkness_cleanse,Enchantments:[{}]}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:diamond_hoe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 2, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/legendary.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/legendary.json new file mode 100644 index 0000000..9e9e52e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/legendary.json @@ -0,0 +1,138 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_upgrade_smithing_template", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:echo_shard", + "functions": [ + { + "function": "minecraft:set_name", + "entity": "this", + "name": { + "text": "Darkness Cleanse", + "color": "aqua", + "italic": false + } + }, + { + "function": "minecraft:set_lore", + "entity": "this", + "lore": [ + { + "text": "Clears the user of Darkness, ", + "color": "gray", + "italic": false + }, + { + "text": "consumes the item on use. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:darkness_cleanse,Enchantments:[{}]}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:diamond_hoe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 2, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:speed\",amplifier:1b,duration:4800,show_particles:1b},{id:\"minecraft:strength\",amplifier:1b,duration:4800,show_particles:1b},{id:\"minecraft:regeneration\",amplifier:0b,duration:4800,show_particles:1b}],CustomPotionColor:851968}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Deep Dark Potion", + "color": "gold", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/rare.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/rare.json new file mode 100644 index 0000000..2576e2e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/rare.json @@ -0,0 +1,96 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:strength" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:echo_shard", + "functions": [ + { + "function": "minecraft:set_name", + "entity": "this", + "name": { + "text": "Darkness Cleanse", + "color": "aqua", + "italic": false + } + }, + { + "function": "minecraft:set_lore", + "entity": "this", + "lore": [ + { + "text": "Clears the user of Darkness, ", + "color": "gray", + "italic": false + }, + { + "text": "consumes the item on use. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:darkness_cleanse,Enchantments:[{}]}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:iron_hoe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 2, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/uncommon.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/uncommon.json new file mode 100644 index 0000000..2f53233 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deep_dark/uncommon.json @@ -0,0 +1,97 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:swift_sneak" + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:echo_shard", + "functions": [ + { + "function": "minecraft:set_name", + "entity": "this", + "name": { + "text": "Darkness Cleanse", + "color": "aqua", + "italic": false + } + }, + { + "function": "minecraft:set_lore", + "entity": "this", + "lore": [ + { + "text": "Clears the user of Darkness, ", + "color": "gray", + "italic": false + }, + { + "text": "consumes the item on use. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:darkness_cleanse,Enchantments:[{}]}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:stone_hoe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": { + "min": 1, + "max": 4 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 3 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/common.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/common.json new file mode 100644 index 0000000..baf8803 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/common.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/epic.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/epic.json new file mode 100644 index 0000000..14fe926 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/epic.json @@ -0,0 +1,94 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_pickaxe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 20, + "max": 40 + }, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/legendary.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/legendary.json new file mode 100644 index 0000000..e6985ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/legendary.json @@ -0,0 +1,192 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_pickaxe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 30, + "max": 50 + }, + "treasure": true + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": 6 + }, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:2400,show_particles:1b},{id:\"minecraft:darkness\",amplifier:1b,duration:100,show_particles:1b}],CustomPotionColor:1310720}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Deeprock Potion", + "color": "gold", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_chestplate", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:deeprock_chestplate,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:9,Operation:0,UUID:[I;-525814044,1462060291,-1203648569,315279682],Slot:\"chest\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:4,Operation:0,UUID:[I;558744405,-183547779,-1655607653,983358503],Slot:\"chest\"},{AttributeName:\"generic.max_health\",Name:\"generic.max_health\",Amount:2,Operation:0,UUID:[I;-709811626,-1253290576,-1817758826,-1116480218],Slot:\"chest\"}],Trim:{material:\"minecraft:netherite\",pattern:\"minecraft:dune\"}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Deeprock Chestplate", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Damage exceeding 20 causes", + "color": "gray", + "italic": false + }, + { + "text": "the user to heal 1 health. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": 4, + "minecraft:blast_protection": 2, + "unbreaking": 10 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/rare.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/rare.json new file mode 100644 index 0000000..c86a0a0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/rare.json @@ -0,0 +1,99 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_scrap", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/uncommon.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/uncommon.json new file mode 100644 index 0000000..4961800 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/deeprock/uncommon.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:dark_oak_log", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/epic_gear.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/epic_gear.json new file mode 100644 index 0000000..e1675f5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/epic_gear.json @@ -0,0 +1,250 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/legendary_gear", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:white_banner", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:32,ic:safety_banner,BlockEntityTag:{Patterns:[{Color:15,Pattern:\"cs\"},{Color:15,Pattern:\"ms\"}]}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Safety Banner", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Place down to clear a ", + "color": "gray", + "italic": false + }, + { + "text": "50x50 area from mob", + "color": "gray", + "italic": false + }, + { + "text": "spawning.", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + } + ] + }, + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_chestplate", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_leggings", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_upgrade_smithing_template", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_boots", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_sword", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 27, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/common.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/common.json new file mode 100644 index 0000000..d6d87f8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/common.json @@ -0,0 +1,43 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:blue_ice" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:packed_ice", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/epic.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/epic.json new file mode 100644 index 0000000..be4215a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/epic.json @@ -0,0 +1,147 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:snow_block" + }, + { + "type": "minecraft:item", + "name": "minecraft:carved_pumpkin", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:blue_ice" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:packed_ice", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:7,ic:rc,rc:ice_spark,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Ice Spark", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot an ice spark", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking,", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:mining_fatigue\",amplifier:1b,duration:60,show_particles:1b}],CustomPotionColor:1280417}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Frostbite Arrow", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 6 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/legendary.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/legendary.json new file mode 100644 index 0000000..c2a6664 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/legendary.json @@ -0,0 +1,184 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:7,ic:rc,rc:ice_spark,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Ice Spark", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot an ice spark", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking,", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:mining_fatigue\",amplifier:1b,duration:60,show_particles:1b}],CustomPotionColor:1280417}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Frostbite Arrow", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_boots", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:frozen_boots,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;-525804044,1462090291,-1203648569,315279682],Slot:\"feet\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:3,Operation:0,UUID:[I;553744405,-183547779,-1655907653,983358503],Slot:\"feet\"},{AttributeName:\"generic.movement_speed\",Name:\"generic.movement_speed\",Amount:0.1,Operation:1,UUID:[I;-709811626,-1253590576,-1817758826,-1616480218],Slot:\"feet\"}],Trim:{material:\"minecraft:lapis\",pattern:\"minecraft:wild\"}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Frozen Boots", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Falling on ice-type blocks ", + "color": "gray", + "italic": false + }, + { + "text": "slows and damages enemies ", + "color": "gray", + "italic": false + }, + { + "text": "in a 3 block radius.", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": 4, + "minecraft:blast_protection": 2, + "unbreaking": 10, + "minecraft:frost_walker": { + "min": 2, + "max": 10 + } + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/rare.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/rare.json new file mode 100644 index 0000000..f7f5151 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/rare.json @@ -0,0 +1,133 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:snow_block" + }, + { + "type": "minecraft:item", + "name": "minecraft:carved_pumpkin", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:blue_ice" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:packed_ice", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:7,ic:rc,rc:ice_spark,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Ice Spark", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot an ice spark", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking,", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:mining_fatigue\",amplifier:1b,duration:60,show_particles:1b}],CustomPotionColor:1280417}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Frostbite Arrow", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 6 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/uncommon.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/uncommon.json new file mode 100644 index 0000000..fe7cdfe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/frozen/uncommon.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:snow_block" + }, + { + "type": "minecraft:item", + "name": "minecraft:carved_pumpkin", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:blue_ice" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:packed_ice", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:mining_fatigue\",amplifier:1b,duration:60,show_particles:1b}],CustomPotionColor:1280417}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Frostbite Arrow", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/legendary_gear.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/legendary_gear.json new file mode 100644 index 0000000..c0f242a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/legendary_gear.json @@ -0,0 +1,294 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_banner", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:32,ic:safety_banner,BlockEntityTag:{Patterns:[{Color:15,Pattern:\"cs\"},{Color:15,Pattern:\"ms\"}]}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Safety Banner", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Place down to clear a ", + "color": "gray", + "italic": false + }, + { + "text": "50x50 area from mob", + "color": "gray", + "italic": false + }, + { + "text": "spawning.", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + } + ] + }, + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_upgrade_smithing_template", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_helmet", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_chestplate", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_leggings", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_boots", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 38, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.01 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/common.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/common.json new file mode 100644 index 0000000..044abd0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/common.json @@ -0,0 +1,70 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:raw_copper" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:pointed_dripstone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/epic.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/epic.json new file mode 100644 index 0000000..cb51ead --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/epic.json @@ -0,0 +1,94 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_shovel", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 20, + "max": 40 + }, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/legendary.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/legendary.json new file mode 100644 index 0000000..fcc1913 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/legendary.json @@ -0,0 +1,135 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_shovel", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 30, + "max": 50 + }, + "treasure": true + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:efficiency": 6 + }, + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:shulker_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:3b,duration:160,show_particles:1b},{id:\"minecraft:regeneration\",amplifier:2b,duration:160,show_particles:1b}],CustomPotionColor:8279072}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Limestone Brew", + "color": "gold", + "italic": false + } + ] + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/rare.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/rare.json new file mode 100644 index 0000000..1c24f88 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/rare.json @@ -0,0 +1,105 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_scrap", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_shovel", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "min": 12, + "max": 24 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:dark_oak_wood", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/uncommon.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/uncommon.json new file mode 100644 index 0000000..f6f0376 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/limestone/uncommon.json @@ -0,0 +1,86 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:0b,duration:600,show_particles:1b}],CustomPotionColor:12089121}" + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:redstone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/common.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/common.json new file mode 100644 index 0000000..abe1550 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/common.json @@ -0,0 +1,43 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:fire_charge" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:magma_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:basalt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/epic.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/epic.json new file mode 100644 index 0000000..af29409 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/epic.json @@ -0,0 +1,126 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:fire_resistance\",amplifier:0b,duration:32000,show_particles:1b}],CustomPotionColor:16750111}" + }, + { + "function": "minecraft:set_name", + "entity": "this", + "name": [ + { + "text": "Potion of Very Long Fire Resistance", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:6,ic:rc,rc:fireball,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Fireball", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot a fireball ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking, ", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:raw_gold_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:raw_iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:obsidian", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/legendary.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/legendary.json new file mode 100644 index 0000000..c42c5ff --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/legendary.json @@ -0,0 +1,201 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:fire_resistance\",amplifier:0b,duration:32000,show_particles:1b}],CustomPotionColor:16750111}" + }, + { + "function": "minecraft:set_name", + "entity": "this", + "name": [ + { + "text": "Potion of Very Long Fire Resistance", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:6,ic:rc,rc:fireball,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Fireball", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot a fireball ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking, ", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_scrap", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:netherite_upgrade_smithing_template" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_leggings", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:molten_leggings,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:7,Operation:0,UUID:[I;452803494,566979291,-2035952766,-696136474],Slot:\"legs\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:3,Operation:0,UUID:[I;-149467581,-1673838308,-1996856098,762617824],Slot:\"legs\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:0.1,Operation:2,UUID:[I;-1681846517,-1972124314,-1220230951,-1909586073],Slot:\"legs\"}],Trim:{material:\"minecraft:copper\",pattern:\"minecraft:silence\"}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Molten Leggings", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "While having Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "melee damage is increased ", + "color": "gray", + "italic": false + }, + { + "text": "by 20%. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": 4, + "minecraft:blast_protection": 2, + "unbreaking": 10, + "minecraft:fire_protection": { + "min": 2, + "max": 10 + } + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:obsidian", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/rare.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/rare.json new file mode 100644 index 0000000..71d26b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/rare.json @@ -0,0 +1,125 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "item", + "weight": 1, + "name": "minecraft:potion", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:fire_resistance\",amplifier:0b,duration:32000,show_particles:1b}],CustomPotionColor:16750111}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Potion of Very Long Fire Resistance", + "color": "white", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:6,ic:rc,rc:fireball,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Fireball", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot a fireball ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking, ", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:raw_gold_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:raw_iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:obsidian", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 6 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/uncommon.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/uncommon.json new file mode 100644 index 0000000..a26b0ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/molten/uncommon.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magma_cream" + }, + { + "type": "minecraft:item", + "name": "minecraft:lava_bucket", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:magma_block" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:basalt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:potion", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:fire_resistance" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/rare_gear.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/rare_gear.json new file mode 100644 index 0000000..a246944 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/rare_gear.json @@ -0,0 +1,259 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/epic_gear", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:3,ic:rc,rc:enchant,ec:3}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Enchantlet Tier III", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 16 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:white_banner", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:32,ic:safety_banner,BlockEntityTag:{Patterns:[{Color:15,Pattern:\"cs\"},{Color:15,Pattern:\"ms\"}]}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Safety Banner", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Place down to clear a ", + "color": "gray", + "italic": false + }, + { + "text": "50x50 area from mob", + "color": "gray", + "italic": false + }, + { + "text": "spawning.", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + } + ] + }, + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_helmet", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_chestplate", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_leggings", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_boots", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_sword", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 20, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.3 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/common.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/common.json new file mode 100644 index 0000000..f418664 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/common.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:moss_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:mangrove_log", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:pufferfish_bucket", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:long_poison\"}" + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/epic.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/epic.json new file mode 100644 index 0000000..b92aeeb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/epic.json @@ -0,0 +1,142 @@ +{ + "pools": [ + { + "rolls": 5, + "entries": [ + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:brown_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:popped_chorus_fruit", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:weakness_cleanse,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Blessed Orb", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Removes Weakness upon ", + "color": "gray", + "italic": false + }, + { + "text": "infliction, consumes on ", + "color": "gray", + "italic": false + }, + { + "text": "use.", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:red_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:dandelion", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:emerald", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200,show_particles:1b}],CustomPotionColor:670482}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Toxic Arrow", + "color": "white", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/legendary.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/legendary.json new file mode 100644 index 0000000..d400b4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/legendary.json @@ -0,0 +1,214 @@ +{ + "pools": [ + { + "rolls": 6, + "entries": [ + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:popped_chorus_fruit", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:weakness_cleanse,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Blessed Orb", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Removes Weakness upon ", + "color": "gray", + "italic": false + }, + { + "text": "infliction, consumes on ", + "color": "gray", + "italic": false + }, + { + "text": "use.", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:red_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:sulfide_helmet,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;-525804044,1462090291,-1203648569,315279652],Slot:\"head\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:3,Operation:0,UUID:[I;553744405,-183547779,-1655907653,983158503],Slot:\"head\"},{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:0.1,Operation:1,UUID:[I;-709801626,-1253590576,-1817758826,-1616480218],Slot:\"head\"}],Trim:{material:\"minecraft:emerald\",pattern:\"minecraft:silence\"}}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Sulfide Helmet", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Striking an enemy with the ", + "color": "gray", + "italic": false + }, + { + "text": "Poison effect has a 10% to ", + "color": "gray", + "italic": false + }, + { + "text": "double its current duration. ", + "color": "gray", + "italic": false + } + ] + }, + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:protection": 4, + "minecraft:blast_protection": 2, + "unbreaking": 10, + "aqua_affinity": 1, + "minecraft:respiration": { + "min": 2, + "max": 10 + } + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:dandelion", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:emerald", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200,show_particles:1b}],CustomPotionColor:670482}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Toxic Arrow", + "color": "white", + "italic": false + } + ] + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/rare.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/rare.json new file mode 100644 index 0000000..200dcb7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/rare.json @@ -0,0 +1,138 @@ +{ + "pools": [ + { + "rolls": 4, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:brown_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:popped_chorus_fruit", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{ic:weakness_cleanse,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Blessed Orb", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Removes Weakness upon ", + "color": "gray", + "italic": false + }, + { + "text": "infliction, consumes on ", + "color": "gray", + "italic": false + }, + { + "text": "use.", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:red_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:dandelion", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:emerald", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_poison\"}" + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/uncommon.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/uncommon.json new file mode 100644 index 0000000..768cba6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/sulfide/uncommon.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:brown_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:red_mushroom", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:dandelion", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:emerald", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:tipped_arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_poison\"}" + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/uncommon_gear.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/uncommon_gear.json new file mode 100644 index 0000000..69cb9c9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/refs/uncommon_gear.json @@ -0,0 +1,194 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_helmet", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_chestplate", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_leggings", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_boots", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_sword", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 13, + "treasure": true + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.025 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_1.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_1.json new file mode 100644 index 0000000..44ba50c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_1.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:rc,rc:enchant,ec:1}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier I", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 6 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_2.json new file mode 100644 index 0000000..032cded --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_2.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_3.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_3.json new file mode 100644 index 0000000..45cd485 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_3.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:3,ic:rc,rc:enchant,ec:3}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier III", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 16 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_4.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_4.json new file mode 100644 index 0000000..66431f7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_4.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_5.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_5.json new file mode 100644 index 0000000..03fbd84 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/enchantlet_5.json @@ -0,0 +1,63 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/light_emblem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/light_emblem.json new file mode 100644 index 0000000..71c21e0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/light_emblem.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/magic_repair.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/magic_repair.json new file mode 100644 index 0000000..5be40d8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/return/magic_repair.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "set_nbt", + "tag": "{ic:rc,rc:magic_repair,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Magic Repair", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to fully repair ", + "color": "gray", + "italic": false + }, + { + "text": "the armor you are wearing. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/amethyst_geode.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/amethyst_geode.json new file mode 100644 index 0000000..ffdc8ff --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/amethyst_geode.json @@ -0,0 +1,408 @@ +{ + "pools": [ + { + "rolls": { + "min": 4, + "max": 8 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:rc,rc:magic_repair,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Magic Repair", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to fully repair ", + "color": "gray", + "italic": false + }, + { + "text": "the armor you are wearing. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:amethyst_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:amethyst_shard", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.125 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:spyglass", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:magic_spyglass,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Magic Spyglass", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Looking at a mob will ", + "color": "gray", + "italic": false + }, + { + "text": "return its health. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.15 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.06125 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/deep_dark_temple.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/deep_dark_temple.json new file mode 100644 index 0000000..e09e18e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/deep_dark_temple.json @@ -0,0 +1,469 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 6 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:rc,rc:enchant,ec:1}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier I", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 6 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.005 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:3,ic:rc,rc:enchant,ec:3}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier III", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 16 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:bone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.125 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:1,ic:sonic_bow}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Supersonic Bow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Bow is chargable and will gain ", + "color": "gray", + "italic": false + }, + { + "text": "momentum the longer charged ", + "color": "gray", + "italic": false + }, + { + "text": "gaining pierce at charge level ", + "color": "gray", + "italic": false + }, + { + "text": "2 or higher. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "If an emnemy is close while ", + "color": "gray", + "italic": false + }, + { + "text": "shooting a charged shot, an ", + "color": "gray", + "italic": false + }, + { + "text": "explosion occurs instead. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.02 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/dinosaur.json new file mode 100644 index 0000000..f3a4e7a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/dinosaur.json @@ -0,0 +1,369 @@ +{ + "pools": [ + { + "rolls": { + "min": 5, + "max": 10 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.01 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:calcite", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:skeleton_skull", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:bone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.0825 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.075 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/frozen_robot.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/frozen_robot.json new file mode 100644 index 0000000..ae5bea0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/frozen_robot.json @@ -0,0 +1,442 @@ +{ + "pools": [ + { + "rolls": { + "min": 5, + "max": 10 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.006 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:blue_ice", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:skeleton_skull", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:bone", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:7,ic:rc,rc:ice_spark,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Ice Spark", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot an ice spark", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking,", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.06125 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crossbow", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:1,ic:icicle_crossbow}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Icicle Crossbow", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Projectiles travel 3 times", + "color": "gray", + "italic": false + }, + { + "text": "faster, dealing more damage. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.025 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/knuckle_trap.json new file mode 100644 index 0000000..3054831 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/knuckle_trap.json @@ -0,0 +1,465 @@ +{ + "pools": [ + { + "rolls": { + "min": 4, + "max": 8 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:netherite_scrap" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:magma_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.01 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:skeleton_skull", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{CustomModelData:6,ic:rc,rc:fireball,Enchantments:[{}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Fireball", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": "Right click to shoot a fireball ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction you are looking, ", + "color": "gray", + "italic": false + }, + { + "text": "Be careful, it may harm you ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:fire_charge", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:2,ic:rc,rc:enchant,ec:2}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier II", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 10 levels. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.2 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.0825 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brush", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.075 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/limestone_houses.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/limestone_houses.json new file mode 100644 index 0000000..5bfa778 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/limestone_houses.json @@ -0,0 +1,377 @@ +{ + "pools": [ + { + "rolls": { + "min": 5, + "max": 10 + }, + "bonus_rolls": 2, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 24, + "treasure": true + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:dripstone_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:skeleton_skull", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shulker_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.005 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.06125 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.03 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/sulfide_huts.json new file mode 100644 index 0000000..e7563b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/structures/sulfide_huts.json @@ -0,0 +1,653 @@ +{ + "pools": [ + { + "rolls": { + "min": 4, + "max": 8 + }, + "entries": [ + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:glow_lichen", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 6, + "name": "minecraft:glass_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:armor_stand", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:1,ic:light_emblem,EntityTag:{Marker:1b,Invisible:1b,Tags:[\"ic.light_emblem\"]}}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Light Emblem", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "When placed mobs will spawn ", + "color": "gray", + "italic": false + }, + { + "text": "per player in the area for ", + "color": "gray", + "italic": false + }, + { + "text": "60 seconds.", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Only works below -y56. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.004 + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:scute", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:glow_berries", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 5, + "name": "minecraft:tall_grass", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:regeneration", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:absorption", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:poison", + "duration": { + "min": 80, + "max": 160 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:strength", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:speed", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:health_boost", + "duration": { + "min": 20, + "max": 40 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:instant_health", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:water_breathing", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:invisibility", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:haste", + "duration": { + "min": 80, + "max": 800 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:poison", + "duration": { + "min": 80, + "max": 160 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:poison", + "duration": { + "min": 80, + "max": 160 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:suspicious_stew", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "type": "minecraft:poison", + "duration": { + "min": 80, + "max": 160 + } + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:5,ic:rc,rc:enchant,ec:5}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier V", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 30 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.06125 + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{CustomModelData:4,ic:rc,rc:enchant,ec:4}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Enchantlet Tier IV", + "color": "light_purple", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to enchant an ", + "color": "gray", + "italic": false + }, + { + "text": "item in your offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " ", + "color": "gray", + "italic": false + }, + { + "text": "Costs 22 levels. ", + "color": "gray", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.025 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.025 + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/drowned.json new file mode 100644 index 0000000..1a58ee4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/drowned.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cod", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:fishing_rod", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/enderman.json new file mode 100644 index 0000000..6d595fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/iron_golem.json new file mode 100644 index 0000000..ff7b19a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/pillager.json new file mode 100644 index 0000000..608190a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/ravager.json new file mode 100644 index 0000000..6c5f7d3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/ravager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/skeleton.json new file mode 100644 index 0000000..1d14d81 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/skeleton.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/slime.json new file mode 100644 index 0000000..8da8ca6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/slime.json @@ -0,0 +1,362 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:leather_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:iron_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:diamond_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:netherite_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/spider.json new file mode 100644 index 0000000..cde253c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/vindicator.json new file mode 100644 index 0000000..c86ec8c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/vindicator.json @@ -0,0 +1,68 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 2 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/wither_skeleton.json new file mode 100644 index 0000000..390ad21 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/wither_skeleton.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/zombie.json new file mode 100644 index 0000000..9098fd3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/zombified_piglin.json new file mode 100644 index 0000000..e36548a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/common/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 3, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:healing\"}" + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/common_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/common" + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/creeper.json new file mode 100644 index 0000000..170854a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/creeper.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 24, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/drowned.json new file mode 100644 index 0000000..ba5dd93 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/drowned.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 5 + }, + "minecraft:smite": { + "min": 0, + "max": 5 + }, + "minecraft:sharpness": { + "min": 0, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/enderman.json new file mode 100644 index 0000000..2cfd240 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/enderman.json @@ -0,0 +1,107 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/evoker.json new file mode 100644 index 0000000..50a047d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/evoker.json @@ -0,0 +1,84 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_attributes", + "modifiers": [ + { + "attribute": "minecraft:generic.movement_speed", + "name": "", + "amount": 0.05, + "operation": "multiply_total", + "slot": "mainhand" + }, + { + "attribute": "minecraft:generic.armor", + "name": "", + "amount": 3, + "operation": "addition", + "slot": "head" + }, + { + "attribute": "minecraft:generic.armor_toughness", + "name": "", + "amount": 2, + "operation": "addition", + "slot": "head" + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/iron_golem.json new file mode 100644 index 0000000..f564f89 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/iron_golem.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/pillager.json new file mode 100644 index 0000000..a73352c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/pillager.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/ravager.json new file mode 100644 index 0000000..bf54c1c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/skeleton.json new file mode 100644 index 0000000..98e60db --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/skeleton.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/slime.json new file mode 100644 index 0000000..c5503a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/slime.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:1b,duration:450},{id:\"minecraft:jump_boost\",amplifier:3b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/spider.json new file mode 100644 index 0000000..cfc3bf0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/spider.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/vindicator.json new file mode 100644 index 0000000..024de21 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/witch.json new file mode 100644 index 0000000..078c04f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/witch.json @@ -0,0 +1,57 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:2b,duration:300},{id:\"minecraft:wither\",amplifier:2b,duration:300}],CustomPotionColor:465923620}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/wither_skeleton.json new file mode 100644 index 0000000..8672946 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/wither_skeleton.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 30 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/zombie.json new file mode 100644 index 0000000..43036d5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/zombie.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/zombified_piglin.json new file mode 100644 index 0000000..039b7d7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/epic/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 7, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 3 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/epic_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/epic" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/creeper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/creeper.json new file mode 100644 index 0000000..8df0d31 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/creeper.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 16, + "max": 32 + } + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/drowned.json new file mode 100644 index 0000000..fac3052 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/drowned.json @@ -0,0 +1,240 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:riptide": { + "min": 2, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:torpedo_harpoon,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.9,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:12,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Thunder Harpoon", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Hold right click to charge a ", + "color": "gray", + "italic": false + }, + { + "text": "lightning beam, longer charges ", + "color": "gray", + "italic": false + }, + { + "text": "yield higher damage. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "Charging while being attacked ", + "color": "gray", + "italic": false + }, + { + "text": "restores durability on item. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 13 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/enderman.json new file mode 100644 index 0000000..c88547a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/enderman.json @@ -0,0 +1,180 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_sword", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:amethyst_blade,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:8,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Amethyst Blade", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is under half health, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Regeneration effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 9 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.7 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_eye", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:rc,rc:teleport,Enchantments:[{}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Teleport", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Right click to teleport in the ", + "color": "gray", + "italic": false + }, + { + "text": "direction you are looking, range ", + "color": "gray", + "italic": false + }, + { + "text": " of 20 blocks. Consumes on use. ", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/evoker.json new file mode 100644 index 0000000..36c7e05 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/evoker.json @@ -0,0 +1,62 @@ +{ + "pools": [ + + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/iron_golem.json new file mode 100644 index 0000000..2899b22 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/iron_golem.json @@ -0,0 +1,140 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/pillager.json new file mode 100644 index 0000000..cb5dbfe --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/pillager.json @@ -0,0 +1,78 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/ravager.json new file mode 100644 index 0000000..a33d4da --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/ravager.json @@ -0,0 +1,168 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 8, + "max": 16 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:brush", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:molten_hammer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Molten Hammer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Right click on blocks to cause ", + "color": "gray", + "italic": false + }, + { + "text": "tremours dealing AoE damage to ", + "color": "gray", + "italic": false + }, + { + "text": "every enemy in a 3x3 radius. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/skeleton.json new file mode 100644 index 0000000..c43c0ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/skeleton.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 3, + "max": 6 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:punch": { + "min": 0, + "max": 2 + }, + "minecraft:infinity": { + "min": 0, + "max": 1 + }, + "minecraft:mending": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/slime.json new file mode 100644 index 0000000..140a4fc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/slime.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:resistance\",amplifier:2b,duration:450},{id:\"minecraft:jump_boost\",amplifier:5b,duration:450}],CustomPotionColor:6024065}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/spider.json new file mode 100644 index 0000000..4fa90ba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/spider.json @@ -0,0 +1,75 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/vindicator.json new file mode 100644 index 0000000..8b4351a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/vindicator.json @@ -0,0 +1,244 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 4, + "max": 7 + }, + "minecraft:unbreaking": { + "min": 3, + "max": 6 + }, + "minecraft:fortune": { + "min": 2, + "max": 4 + }, + "minecraft:efficiency": { + "min": 2, + "max": 6 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:netherite_axe", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:steel_battleaxe,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-2.95,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:13,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Steel Battleaxe", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is holding a shield, also has ", + "color": "gray", + "italic": false + }, + { + "text": "a 20% chance of stealing the ", + "color": "gray", + "italic": false + }, + { + "text": "enemy's Resistance effect. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 14 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1.05 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/witch.json new file mode 100644 index 0000000..b020078 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/witch.json @@ -0,0 +1,136 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 3, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:4b,duration:400},{id:\"minecraft:wither\",amplifier:2b,duration:400}],CustomPotionColor:465923620}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_hoe", + "functions": [ + { + "function": "minecraft:set_count", + "count": 1 + }, + { + "function": "minecraft:set_nbt", + "tag": "{HideFlags:2,CustomModelData:1,ic:bastion_piercer,AttributeModifiers:[{AttributeName:\"generic.attack_speed\",Name:\"generic.attack_speed\",Amount:-3,Operation:0,UUID:[I;232069848,20531297,-1339166817,1330268803],Slot:\"mainhand\"},{AttributeName:\"generic.attack_damage\",Name:\"generic.attack_damage\",Amount:11,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"mainhand\"}]}" + }, + { + "function": "minecraft:set_name", + "name": [ + { + "text": "Bastion Piercer", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "minecraft:set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Deals more damage when enemy ", + "color": "gray", + "italic": false + }, + { + "text": "is 2.75+ blocks away from ", + "color": "gray", + "italic": false + }, + { + "text": "the user. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Main Hand:", + "color": "gray", + "italic": false + }, + { + "text": " 12 Attack Damage ", + "color": "dark_green", + "italic": false + }, + { + "text": " 1 Attack Speed", + "color": "dark_green", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/wither_skeleton.json new file mode 100644 index 0000000..936a351 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/wither_skeleton.json @@ -0,0 +1,161 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/zombie.json new file mode 100644 index 0000000..4c56baf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/zombie.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 32, + "max": 64 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/zombified_piglin.json new file mode 100644 index 0000000..9facf93 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/legendary/zombified_piglin.json @@ -0,0 +1,146 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{ic:clear}" + } + ] + } + ] + }, + { + "rolls": 10, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:2b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:300}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{HideFlags:2,CustomModelData:2,ic:acid_shield,AttributeModifiers:[{AttributeName:\"generic.armor\",Name:\"generic.armor\",Amount:4,Operation:0,UUID:[I;232069848,40531297,-1339166817,1330268803],Slot:\"offhand\"},{AttributeName:\"generic.armor_toughness\",Name:\"generic.armor_toughness\",Amount:2,Operation:0,UUID:[I;319156707,1453736356,-1572244117,1901841866],Slot:\"offhand\"}]}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Acid Shield", + "color": "gold", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": " " + }, + { + "text": "Blocking attacks yield a 25% ", + "color": "gray", + "italic": false + }, + { + "text": "chance to release a toxic gas ", + "color": "gray", + "italic": false + }, + { + "text": "in the direction of the user. ", + "color": "gray", + "italic": false + }, + { + "text": "Poison immunity in offhand. ", + "color": "gray", + "italic": false + }, + { + "text": " " + }, + { + "text": "When in Off Hand:", + "color": "gray", + "italic": false + }, + { + "text": " +4 Armor ", + "color": "blue", + "italic": false + }, + { + "text": " +2 Armor Toughness", + "color": "blue", + "italic": false + } + ] + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:shield" + ] + } + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/legendary_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 3, + "name": "infinity_cave:refs/sulfide/legendary" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/drowned.json new file mode 100644 index 0000000..7ff9814 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/drowned.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:trident", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:looting": { + "min": 1, + "max": 3 + }, + "minecraft:bane_of_arthropods": { + "min": 0, + "max": 4 + }, + "minecraft:smite": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 10, + "max": 20 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/enderman.json new file mode 100644 index 0000000..ceb81a6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/evoker.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/evoker.json new file mode 100644 index 0000000..2f86375 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/evoker.json @@ -0,0 +1,64 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:book", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:enchant_randomly", + "enchantments": [ + "minecraft:mending" + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/iron_golem.json new file mode 100644 index 0000000..0b7f30c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/pillager.json new file mode 100644 index 0000000..be71cb5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:firework_rocket", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{Fireworks:{Explosions:[{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0},{Type:0}]}}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/ravager.json new file mode 100644 index 0000000..c5db39c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/ravager.json @@ -0,0 +1,87 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:saddle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/skeleton.json new file mode 100644 index 0000000..4004c2a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/skeleton.json @@ -0,0 +1,69 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:power": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 1, + "max": 4 + }, + "minecraft:punch": { + "min": 0, + "max": 1 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/slime.json new file mode 100644 index 0000000..3a43437 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 12, + "max": 24 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/spider.json new file mode 100644 index 0000000..67b30e3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/spider.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cobweb", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/vindicator.json new file mode 100644 index 0000000..c7633c4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 5 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 1, + "max": 3 + }, + "minecraft:efficiency": { + "min": 0, + "max": 5 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/witch.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/witch.json new file mode 100644 index 0000000..f208412 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/witch.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:slowness\",amplifier:1b,duration:200},{id:\"minecraft:wither\",amplifier:2b,duration:200}],CustomPotionColor:3547682}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/wither_skeleton.json new file mode 100644 index 0000000..ba3864f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/wither_skeleton.json @@ -0,0 +1,155 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal_block", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/zombie.json new file mode 100644 index 0000000..758bad3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/zombie.json @@ -0,0 +1,65 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:enchanted_golden_apple", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.25 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/zombified_piglin.json new file mode 100644 index 0000000..6170f53 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/rare/zombified_piglin.json @@ -0,0 +1,90 @@ +{ + "pools": [ + { + "rolls": 5, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{custom_potion_effects:[{id:\"minecraft:instant_health\",amplifier:1b,duration:20},{id:\"minecraft:regeneration\",amplifier:2b,duration:100}],CustomPotionColor:16720161}" + } + ] + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_nbt", + "tag": "{ic:piglin_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Piglin Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "Applies Strength and", + "color": "gray", + "italic": false + }, + { + "text": "Absorpion II for 10", + "color": "gray", + "italic": false + }, + { + "text": "seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/rare_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/rare" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/drowned.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/drowned.json new file mode 100644 index 0000000..5c399b4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/drowned.json @@ -0,0 +1,73 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:nautilus_shell", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:cooked_salmon", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/enderman.json new file mode 100644 index 0000000..24b8d6b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/enderman.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:ender_pearl", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/iron_golem.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/iron_golem.json new file mode 100644 index 0000000..dc2fe18 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/iron_golem.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/pillager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/pillager.json new file mode 100644 index 0000000..2cc74eb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/pillager.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:arrow", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/ravager.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/ravager.json new file mode 100644 index 0000000..1eb4437 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/ravager.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:cooked_porkchop", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/skeleton.json new file mode 100644 index 0000000..380cdf9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/skeleton.json @@ -0,0 +1,55 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:bow", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 12 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/slime.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/slime.json new file mode 100644 index 0000000..54d02a0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/slime.json @@ -0,0 +1,60 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:slime_ball", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/spider.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/spider.json new file mode 100644 index 0000000..f389af8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/spider.json @@ -0,0 +1,74 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:string", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ], + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": [ + "minecraft:chainmail_chestplate" + ] + } + } + } + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/vindicator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/vindicator.json new file mode 100644 index 0000000..b5b7701 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/vindicator.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe", + "functions": [ + { + "function": "minecraft:set_enchantments", + "enchantments": { + "minecraft:sharpness": { + "min": 1, + "max": 3 + }, + "minecraft:unbreaking": { + "min": 2, + "max": 5 + }, + "minecraft:fortune": { + "min": 0, + "max": 2 + }, + "minecraft:efficiency": { + "min": 0, + "max": 4 + } + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/wither_skeleton.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/wither_skeleton.json new file mode 100644 index 0000000..6cca520 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/wither_skeleton.json @@ -0,0 +1,121 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:coal", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 6, + "max": 12 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:smoker", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + }, + { + "type": "item", + "weight": 1, + "name": "minecraft:dried_kelp", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_nbt", + "tag": "{ic:burnt_meat}" + }, + { + "function": "set_name", + "name": [ + { + "text": "Burnt Meat", + "color": "aqua", + "italic": false + } + ] + }, + { + "function": "set_lore", + "lore": [ + { + "text": "If the user has Fire Resistance ", + "color": "gray", + "italic": false + }, + { + "text": "clears the effect, but grants", + "color": "gray", + "italic": false + }, + { + "text": "Strength II for 60 seconds", + "color": "gray", + "italic": false + } + ] + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/zombie.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/zombie.json new file mode 100644 index 0000000..4ab6aec --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/zombie.json @@ -0,0 +1,66 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:shield", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 1 + } + } + ], + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/zombified_piglin.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/zombified_piglin.json new file mode 100644 index 0000000..5f71b74 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/loot_tables/sulfide/uncommon/zombified_piglin.json @@ -0,0 +1,59 @@ +{ + "pools": [ + { + "rolls": 4, + "bonus_rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 1, + "name": "minecraft:splash_potion", + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{Potion:\"minecraft:strong_healing\"}" + } + ] + }, + { + "type": "minecraft:item", + "weight": 2, + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "minecraft:item", + "weight": 4, + "name": "minecraft:experience_bottle", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/uncommon_gear" + }, + { + "type": "minecraft:loot_table", + "weight": 2, + "name": "infinity_cave:refs/sulfide/uncommon" + } + ] + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/any_armor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/any_armor.json new file mode 100644 index 0000000..7aa4e57 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/any_armor.json @@ -0,0 +1,50 @@ +{ + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "feet": { + "tag": "minecraft:trimmable_armor" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "legs": { + "tag": "minecraft:trimmable_armor" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "head": { + "tag": "minecraft:trimmable_armor" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "tag": "minecraft:trimmable_armor" + } + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/deeprock_chestplate.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/deeprock_chestplate.json new file mode 100644 index 0000000..0925ce0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/deeprock_chestplate.json @@ -0,0 +1,13 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "chest": { + "nbt": "{ic:deeprock_chestplate}" + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/frozen_boots.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/frozen_boots.json new file mode 100644 index 0000000..fcf3bb6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/frozen_boots.json @@ -0,0 +1,13 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "feet": { + "nbt": "{ic:frozen_boots}" + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/molten_leggings.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/molten_leggings.json new file mode 100644 index 0000000..6c522d0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/molten_leggings.json @@ -0,0 +1,13 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "legs": { + "nbt": "{ic:molten_leggings}" + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/sulfide_helmet.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/sulfide_helmet.json new file mode 100644 index 0000000..e561f7f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/armor/sulfide_helmet.json @@ -0,0 +1,13 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "head": { + "nbt": "{ic:sulfide_helmet}" + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/biomes.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/biomes.json new file mode 100644 index 0000000..849a124 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/biomes.json @@ -0,0 +1,83 @@ +{ + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "minecraft:deep_dark" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:deeprock_caverns" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:amethyst_caves" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:limestone_grotto" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:sulfide_caves" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:frozen_caves" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "position": { + "y": { + "max": -56 + } + }, + "biome": "infinity_cave:molten_caves" + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantable.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantable.json new file mode 100644 index 0000000..b4e9a66 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantable.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:enchantable" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet.json new file mode 100644 index 0000000..ec0f05e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet.json @@ -0,0 +1,13 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ] + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_1.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_1.json new file mode 100644 index 0000000..57eba48 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_1.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ec:1}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_2.json new file mode 100644 index 0000000..e46537b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_2.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ec:2}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_3.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_3.json new file mode 100644 index 0000000..3ffd583 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_3.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ec:3}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_4.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_4.json new file mode 100644 index 0000000..52cfcce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_4.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ec:4}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_5.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_5.json new file mode 100644 index 0000000..08ba9ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/enchantlet_5.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ec:5}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/is_enchanted.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/is_enchanted.json new file mode 100644 index 0000000..f85fca3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/is_enchanted.json @@ -0,0 +1,18 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "enchantments": [ + { + "levels": { + "min": 1 + } + } + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/mainhand.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/mainhand.json new file mode 100644 index 0000000..4f70a46 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/mainhand.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{rc:enchant}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_1.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_1.json new file mode 100644 index 0000000..3687abf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_1.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ec:1}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_2.json new file mode 100644 index 0000000..10a4c5f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_2.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ec:2}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_3.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_3.json new file mode 100644 index 0000000..65b19b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_3.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ec:3}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_4.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_4.json new file mode 100644 index 0000000..9871b3e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_4.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ec:4}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_5.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_5.json new file mode 100644 index 0000000..59f98fb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/off_5.json @@ -0,0 +1,11 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ec:5}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/offhand.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/offhand.json new file mode 100644 index 0000000..2713d21 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/offhand.json @@ -0,0 +1,29 @@ +[ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ] + } + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{rc:enchant}" + } + } + } + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/too_much.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/too_much.json new file mode 100644 index 0000000..fd611f8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/enchantlet/too_much.json @@ -0,0 +1,15 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "tag": "infinity_cave:enchantable", + "count": { + "min": 2 + } + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/firework_offhand.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/firework_offhand.json new file mode 100644 index 0000000..aff6b00 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/firework_offhand.json @@ -0,0 +1,14 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "items": [ + "minecraft:firework_rocket" + ] + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/match_id.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/match_id.json new file mode 100644 index 0000000..6c103aa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/match_id.json @@ -0,0 +1,26 @@ +{ + "condition": "minecraft:value_check", + "value": { + "type": "minecraft:score", + "target": "this", + "score": "ic.id" + }, + "range": { + "min": { + "type": "minecraft:score", + "target": { + "type": "minecraft:fixed", + "name": "#id" + }, + "score": "ic.id" + }, + "max": { + "type": "minecraft:score", + "target": { + "type": "minecraft:fixed", + "name": "#id" + }, + "score": "ic.id" + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/not_setup.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/not_setup.json new file mode 100644 index 0000000..4ffca08 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/not_setup.json @@ -0,0 +1,9 @@ +{ + "condition": "minecraft:value_check", + "value": { + "type": "minecraft:score", + "target": "this", + "score": "ic.id" + }, + "range": 0 +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/00625.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/00625.json new file mode 100644 index 0000000..5f8ba77 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/00625.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.00625 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/0085.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/0085.json new file mode 100644 index 0000000..17f180f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/0085.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.0085 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/01.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/01.json new file mode 100644 index 0000000..e58db8d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/01.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.01 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/10.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/10.json new file mode 100644 index 0000000..d78929a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/10.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.1 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/20.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/20.json new file mode 100644 index 0000000..1f7174a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/20.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.2 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/50.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/50.json new file mode 100644 index 0000000..3e45c15 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/percent/50.json @@ -0,0 +1,5 @@ +{ + "condition": "minecraft:random_chance", + "chance": 0.5 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/player/ground.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/player/ground.json new file mode 100644 index 0000000..1b4170f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/player/ground.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "stepping_on": { + "block": { + "tag": "infinity_cave:all_but_air" + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/_rc_check.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/_rc_check.json new file mode 100644 index 0000000..5a0c0d4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/_rc_check.json @@ -0,0 +1,35 @@ +[ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:rc}", + "enchantments": [ + {} + ] + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ic:rc}", + "enchantments": [ + {} + ] + } + } + } + } + ] + } +] diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_off_rc.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_off_rc.json new file mode 100644 index 0000000..29500b7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_off_rc.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "offhand": { + "nbt": "{ic:rc}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc.json new file mode 100644 index 0000000..7be2457 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{ic:rc}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_enchant.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_enchant.json new file mode 100644 index 0000000..e3e5036 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_enchant.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{rc:enchant}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_fireball.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_fireball.json new file mode 100644 index 0000000..e44cc45 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_fireball.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{rc:fireball}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_ice_spark.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_ice_spark.json new file mode 100644 index 0000000..55ba87e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_ice_spark.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{rc:ice_spark}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_magic_repair.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_magic_repair.json new file mode 100644 index 0000000..cd35612 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_magic_repair.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{rc:magic_repair}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_teleport.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_teleport.json new file mode 100644 index 0000000..9bf3784 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/detect_rc_teleport.json @@ -0,0 +1,12 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "nbt": "{rc:teleport}" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/no_rc.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/no_rc.json new file mode 100644 index 0000000..d55519d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/rc/no_rc.json @@ -0,0 +1,19 @@ +{ + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "items": [ + "minecraft:ender_eye" + ], + "enchantments": [ + {} + ] + } + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/target.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/target.json new file mode 100644 index 0000000..9878274 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/target.json @@ -0,0 +1,9 @@ +{ + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "targeted_entity": { + "type": "minecraft:player" + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/acid_shield_main.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/acid_shield_main.json new file mode 100644 index 0000000..d35e4a1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/acid_shield_main.json @@ -0,0 +1,18 @@ +[ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:acid_shield}" + } + } + } + }, + { + "condition": "minecraft:random_chance", + "chance": 0.625 + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/acid_shield_off.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/acid_shield_off.json new file mode 100644 index 0000000..069d3de --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/acid_shield_off.json @@ -0,0 +1,18 @@ +[ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ic:acid_shield}" + } + } + } + }, + { + "condition": "minecraft:random_chance", + "chance": 0.625 + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/molten_main.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/molten_main.json new file mode 100644 index 0000000..14b221f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/molten_main.json @@ -0,0 +1,18 @@ +[ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:molten_hammer}" + } + } + } + }, + { + "condition": "minecraft:random_chance", + "chance": 0.00625 + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/molten_off.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/molten_off.json new file mode 100644 index 0000000..aedd6dc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/molten_off.json @@ -0,0 +1,18 @@ +[ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ic:molten_hammer}" + } + } + } + }, + { + "condition": "minecraft:random_chance", + "chance": 0.00625 + } + ] + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/torpedo_harpoon_main.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/torpedo_harpoon_main.json new file mode 100644 index 0000000..73315c4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/torpedo_harpoon_main.json @@ -0,0 +1,14 @@ + + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "mainhand": { + "nbt": "{ic:torpedo_harpoon}" + } + } + } + } + + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/torpedo_harpoon_off.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/torpedo_harpoon_off.json new file mode 100644 index 0000000..919357e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/predicates/weapons/torpedo_harpoon_off.json @@ -0,0 +1,14 @@ + + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "offhand": { + "nbt": "{ic:torpedo_harpoon}" + } + } + } + } + + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/amethyst_altar.nbt b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/amethyst_altar.nbt new file mode 100644 index 0000000..5d1c8b0 Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/amethyst_altar.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/amethyst_geode.nbt b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/amethyst_geode.nbt new file mode 100644 index 0000000..f10157c Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/amethyst_geode.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/deep_dark_temple.nbt b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/deep_dark_temple.nbt new file mode 100644 index 0000000..840a0bd Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/deep_dark_temple.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/dinosaur.nbt b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/dinosaur.nbt new file mode 100644 index 0000000..f02caa6 Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/dinosaur.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/frozen_robot.nbt b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/frozen_robot.nbt new file mode 100644 index 0000000..f26ffe2 Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/frozen_robot.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/knuckle_trap.nbt b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/knuckle_trap.nbt new file mode 100644 index 0000000..e0b575a Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/knuckle_trap.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/limestone_houses.nbt b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/limestone_houses.nbt new file mode 100644 index 0000000..a1bbf38 Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/limestone_houses.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/pillar.nbt b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/pillar.nbt new file mode 100644 index 0000000..ef8708e Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/pillar.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/sulfide_huts.nbt b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/sulfide_huts.nbt new file mode 100644 index 0000000..667b2ff Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/structures/sulfide_huts.nbt differ diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_air.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_air.json new file mode 100644 index 0000000..2c10660 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_air.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:lava","minecraft:acacia_door","minecraft:acacia_fence","minecraft:acacia_fence_gate","minecraft:acacia_leaves","minecraft:acacia_log","minecraft:acacia_planks","minecraft:acacia_sapling","minecraft:acacia_sign","minecraft:acacia_slab","minecraft:acacia_stairs","minecraft:acacia_trapdoor","minecraft:acacia_wall_sign","minecraft:acacia_wood","minecraft:activator_rail","minecraft:allium","minecraft:amethyst_block","minecraft:amethyst_cluster","minecraft:ancient_debris","minecraft:andesite","minecraft:andesite_slab","minecraft:andesite_stairs","minecraft:andesite_wall","minecraft:anvil","minecraft:attached_melon_stem","minecraft:attached_pumpkin_stem","minecraft:azalea","minecraft:azalea_leaves","minecraft:azure_bluet","minecraft:bamboo","minecraft:bamboo_sapling","minecraft:barrel","minecraft:barrier","minecraft:basalt","minecraft:beacon","minecraft:bedrock","minecraft:bee_nest","minecraft:beehive","minecraft:birch_door","minecraft:birch_fence","minecraft:birch_fence_gate","minecraft:birch_leaves","minecraft:birch_log","minecraft:birch_planks","minecraft:birch_pressure_plate","minecraft:birch_sapling","minecraft:birch_sign","minecraft:birch_slab","minecraft:birch_stairs","minecraft:birch_trapdoor","minecraft:birch_wall_sign","minecraft:birch_wood","minecraft:black_banner","minecraft:black_bed","minecraft:black_candle_cake","minecraft:black_carpet","minecraft:black_concrete","minecraft:black_concrete_powder","minecraft:black_glazed_terracotta","minecraft:black_shulker_box","minecraft:black_stained_glass","minecraft:black_stained_glass_pane","minecraft:black_terracotta","minecraft:black_wall_banner","minecraft:black_wool","minecraft:blackstone","minecraft:blackstone_slab","minecraft:blackstone_stairs","minecraft:blackstone_wall","minecraft:blast_furnace","minecraft:blue_banner","minecraft:blue_bed","minecraft:blue_candle_cake","minecraft:blue_carpet","minecraft:blue_concrete","minecraft:blue_concrete_powder","minecraft:blue_glazed_terracotta","minecraft:blue_ice","minecraft:blue_orchid","minecraft:blue_shulker_box","minecraft:blue_stained_glass","minecraft:blue_stained_glass_pane","minecraft:blue_terracotta","minecraft:blue_wall_banner","minecraft:blue_wool","minecraft:bone_block","minecraft:bookshelf","minecraft:brain_coral","minecraft:brain_coral_block","minecraft:brain_coral_fan","minecraft:brain_coral_wall_fan","minecraft:brewing_stand","minecraft:brick_slab","minecraft:brick_stairs","minecraft:brick_wall","minecraft:bricks","minecraft:brown_banner","minecraft:brown_bed","minecraft:brown_candle_cake","minecraft:brown_carpet","minecraft:brown_concrete","minecraft:brown_concrete_powder","minecraft:brown_glazed_terracotta","minecraft:brown_mushroom","minecraft:brown_mushroom_block","minecraft:brown_shulker_box","minecraft:brown_stained_glass","minecraft:brown_stained_glass_pane","minecraft:brown_terracotta","minecraft:brown_wall_banner","minecraft:brown_wool","minecraft:bubble_column","minecraft:bubble_coral","minecraft:bubble_coral_block","minecraft:bubble_coral_fan","minecraft:bubble_coral_wall_fan","minecraft:budding_amethyst","minecraft:cactus","minecraft:cake","minecraft:calcite","minecraft:campfire","minecraft:candle_cake","minecraft:carrots","minecraft:cartography_table","minecraft:carved_pumpkin","minecraft:cauldron","minecraft:chain","minecraft:chain_command_block","minecraft:chest","minecraft:chipped_anvil","minecraft:chiseled_deepslate","minecraft:chiseled_nether_bricks","minecraft:chiseled_polished_blackstone","minecraft:chiseled_quartz_block","minecraft:chiseled_red_sandstone","minecraft:chiseled_sandstone","minecraft:chiseled_stone_bricks","minecraft:chorus_flower","minecraft:chorus_plant","minecraft:clay","minecraft:coal_block","minecraft:coal_ore","minecraft:coarse_dirt","minecraft:cobbled_deepslate","minecraft:cobbled_deepslate_slab","minecraft:cobbled_deepslate_stairs","minecraft:cobbled_deepslate_wall","minecraft:cobblestone","minecraft:cobblestone_slab","minecraft:cobblestone_stairs","minecraft:cobblestone_wall","minecraft:cocoa","minecraft:command_block","minecraft:comparator","minecraft:composter","minecraft:conduit","minecraft:copper_block","minecraft:copper_ore","minecraft:cracked_deepslate_bricks","minecraft:cracked_deepslate_tiles","minecraft:cracked_nether_bricks","minecraft:cracked_polished_blackstone_bricks","minecraft:cracked_stone_bricks","minecraft:crafting_table","minecraft:creeper_head","minecraft:creeper_wall_head","minecraft:crimson_door","minecraft:crimson_fence","minecraft:crimson_fence_gate","minecraft:crimson_fungus","minecraft:crimson_hyphae","minecraft:crimson_nylium","minecraft:crimson_planks","minecraft:crimson_pressure_plate","minecraft:crimson_roots","minecraft:crimson_sign","minecraft:crimson_slab","minecraft:crimson_stairs","minecraft:crimson_stem","minecraft:crimson_trapdoor","minecraft:crimson_wall_sign","minecraft:crying_obsidian","minecraft:cut_copper","minecraft:cut_copper_slab","minecraft:cut_copper_stairs","minecraft:cut_red_sandstone","minecraft:cut_red_sandstone_slab","minecraft:cut_sandstone","minecraft:cut_sandstone_slab","minecraft:cyan_banner","minecraft:cyan_bed","minecraft:cyan_candle_cake","minecraft:cyan_carpet","minecraft:cyan_concrete","minecraft:cyan_concrete_powder","minecraft:cyan_glazed_terracotta","minecraft:cyan_shulker_box","minecraft:cyan_stained_glass","minecraft:cyan_stained_glass_pane","minecraft:cyan_terracotta","minecraft:cyan_wall_banner","minecraft:cyan_wool","minecraft:damaged_anvil","minecraft:dandelion","minecraft:dark_oak_door","minecraft:dark_oak_fence","minecraft:dark_oak_fence_gate","minecraft:dark_oak_leaves","minecraft:dark_oak_log","minecraft:dark_oak_planks","minecraft:dark_oak_pressure_plate","minecraft:dark_oak_sapling","minecraft:dark_oak_sign","minecraft:dark_oak_slab","minecraft:dark_oak_stairs","minecraft:dark_oak_trapdoor","minecraft:dark_oak_wall_sign","minecraft:dark_oak_wood","minecraft:dark_prismarine","minecraft:dark_prismarine_slab","minecraft:dark_prismarine_stairs","minecraft:daylight_detector","minecraft:dead_brain_coral","minecraft:dead_brain_coral_block","minecraft:dead_brain_coral_fan","minecraft:dead_brain_coral_wall_fan","minecraft:dead_bubble_coral","minecraft:dead_bubble_coral_block","minecraft:dead_bubble_coral_fan","minecraft:dead_fire_coral_block","minecraft:dead_fire_coral_fan","minecraft:dead_fire_coral_wall_fan","minecraft:dead_horn_coral","minecraft:dead_horn_coral_block","minecraft:dead_horn_coral_fan","minecraft:dead_horn_coral_wall_fan","minecraft:dead_tube_coral","minecraft:dead_tube_coral_block","minecraft:dead_tube_coral_fan","minecraft:dead_tube_coral_wall_fan","minecraft:deepslate","minecraft:deepslate_brick_slab","minecraft:deepslate_brick_stairs","minecraft:deepslate_brick_wall","minecraft:deepslate_bricks","minecraft:deepslate_coal_ore","minecraft:deepslate_copper_ore","minecraft:deepslate_diamond_ore","minecraft:deepslate_emerald_ore","minecraft:deepslate_gold_ore","minecraft:deepslate_iron_ore","minecraft:deepslate_lapis_ore","minecraft:deepslate_redstone_ore","minecraft:deepslate_tile_slab","minecraft:deepslate_tile_stairs","minecraft:deepslate_tile_wall","minecraft:deepslate_tiles","minecraft:detector_rail","minecraft:diamond_block","minecraft:diamond_ore","minecraft:diorite","minecraft:diorite_slab","minecraft:diorite_stairs","minecraft:diorite_wall","minecraft:dirt","minecraft:dirt_path","minecraft:dispenser","minecraft:dragon_egg","minecraft:dragon_head","minecraft:dragon_wall_head","minecraft:dried_kelp_block","minecraft:dripstone_block","minecraft:dropper","minecraft:emerald_block","minecraft:emerald_ore","minecraft:enchanting_table","minecraft:end_gateway","minecraft:end_portal","minecraft:end_portal_frame","minecraft:end_rod","minecraft:end_stone","minecraft:end_stone_brick_slab","minecraft:end_stone_brick_stairs","minecraft:end_stone_brick_wall","minecraft:end_stone_bricks","minecraft:ender_chest","minecraft:exposed_copper","minecraft:exposed_cut_copper","minecraft:exposed_cut_copper_slab","minecraft:exposed_cut_copper_stairs","minecraft:farmland","minecraft:fire_coral","minecraft:fire_coral_block","minecraft:fire_coral_fan","minecraft:fire_coral_wall_fan","minecraft:fletching_table","minecraft:flowering_azalea","minecraft:flowering_azalea_leaves","minecraft:frosted_ice","minecraft:furnace","minecraft:gilded_blackstone","minecraft:glass","minecraft:glass_pane","minecraft:glowstone","minecraft:gold_block","minecraft:gold_ore","minecraft:granite","minecraft:granite_slab","minecraft:granite_stairs","minecraft:granite_wall","minecraft:grass_block","minecraft:gravel","minecraft:gray_banner","minecraft:gray_bed","minecraft:gray_candle_cake","minecraft:gray_carpet","minecraft:gray_concrete","minecraft:gray_concrete_powder","minecraft:gray_glazed_terracotta","minecraft:gray_shulker_box","minecraft:gray_stained_glass","minecraft:gray_stained_glass_pane","minecraft:gray_terracotta","minecraft:gray_wall_banner","minecraft:gray_wool","minecraft:green_banner","minecraft:green_bed","minecraft:green_candle_cake","minecraft:green_carpet","minecraft:green_concrete","minecraft:green_concrete_powder","minecraft:green_glazed_terracotta","minecraft:green_shulker_box","minecraft:green_stained_glass","minecraft:green_stained_glass_pane","minecraft:green_terracotta","minecraft:green_wall_banner","minecraft:green_wool","minecraft:grindstone","minecraft:hanging_roots","minecraft:hay_block","minecraft:heavy_weighted_pressure_plate","minecraft:honey_block","minecraft:honeycomb_block","minecraft:hopper","minecraft:horn_coral","minecraft:horn_coral_block","minecraft:horn_coral_fan","minecraft:horn_coral_wall_fan","minecraft:ice","minecraft:infested_chiseled_stone_bricks","minecraft:infested_cobblestone","minecraft:infested_cracked_stone_bricks","minecraft:infested_deepslate","minecraft:infested_mossy_stone_bricks","minecraft:infested_stone","minecraft:infested_stone_bricks","minecraft:iron_bars","minecraft:iron_block","minecraft:iron_door","minecraft:iron_ore","minecraft:iron_trapdoor","minecraft:jack_o_lantern","minecraft:jigsaw","minecraft:jukebox","minecraft:jungle_door","minecraft:jungle_fence","minecraft:jungle_fence_gate","minecraft:jungle_leaves","minecraft:jungle_log","minecraft:jungle_planks","minecraft:jungle_pressure_plate","minecraft:jungle_sapling","minecraft:jungle_sign","minecraft:jungle_slab","minecraft:jungle_stairs","minecraft:jungle_trapdoor","minecraft:jungle_wall_sign","minecraft:jungle_wood","minecraft:kelp","minecraft:kelp_plant","minecraft:ladder","minecraft:lantern","minecraft:lapis_block","minecraft:lapis_ore","minecraft:large_amethyst_bud","minecraft:large_fern","minecraft:lava_cauldron","minecraft:lectern","minecraft:lever","minecraft:light","minecraft:light_blue_banner","minecraft:light_blue_bed","minecraft:light_blue_candle_cake","minecraft:light_blue_carpet","minecraft:light_blue_concrete","minecraft:light_blue_concrete_powder","minecraft:light_blue_glazed_terracotta","minecraft:light_blue_shulker_box","minecraft:light_blue_stained_glass","minecraft:light_blue_stained_glass_pane","minecraft:light_blue_terracotta","minecraft:light_blue_wall_banner","minecraft:light_blue_wool","minecraft:light_gray_banner","minecraft:light_gray_bed","minecraft:light_gray_candle_cake","minecraft:light_gray_carpet","minecraft:light_gray_concrete","minecraft:light_gray_concrete_powder","minecraft:light_gray_glazed_terracotta","minecraft:light_gray_shulker_box","minecraft:light_gray_stained_glass","minecraft:light_gray_stained_glass_pane","minecraft:light_gray_terracotta","minecraft:light_gray_wall_banner","minecraft:light_gray_wool","minecraft:light_weighted_pressure_plate","minecraft:lightning_rod","minecraft:lilac","minecraft:lily_of_the_valley","minecraft:lily_pad","minecraft:lime_banner","minecraft:lime_bed","minecraft:lime_candle_cake","minecraft:lime_carpet","minecraft:lime_concrete","minecraft:lime_concrete_powder","minecraft:lime_glazed_terracotta","minecraft:lime_shulker_box","minecraft:lime_stained_glass","minecraft:lime_stained_glass_pane","minecraft:lime_terracotta","minecraft:lime_wall_banner","minecraft:lime_wool","minecraft:lodestone","minecraft:loom","minecraft:magenta_banner","minecraft:magenta_bed","minecraft:magenta_candle_cake","minecraft:magenta_carpet","minecraft:magenta_concrete","minecraft:magenta_concrete_powder","minecraft:magenta_glazed_terracotta","minecraft:magenta_shulker_box","minecraft:magenta_stained_glass","minecraft:magenta_stained_glass_pane","minecraft:magenta_terracotta","minecraft:magenta_wall_banner","minecraft:magenta_wool","minecraft:magma_block","minecraft:medium_amethyst_bud","minecraft:melon","minecraft:melon_stem","minecraft:moss_block","minecraft:moss_carpet","minecraft:mossy_cobblestone","minecraft:mossy_cobblestone_slab","minecraft:mossy_cobblestone_stairs","minecraft:mossy_cobblestone_wall","minecraft:mossy_stone_brick_slab","minecraft:mossy_stone_brick_stairs","minecraft:mossy_stone_brick_wall","minecraft:mossy_stone_bricks","minecraft:moving_piston","minecraft:mushroom_stem","minecraft:mycelium","minecraft:nether_brick_fence","minecraft:nether_brick_slab","minecraft:nether_brick_stairs","minecraft:nether_brick_wall","minecraft:nether_bricks","minecraft:nether_gold_ore","minecraft:nether_portal","minecraft:nether_quartz_ore","minecraft:nether_sprouts","minecraft:nether_wart","minecraft:nether_wart_block","minecraft:netherite_block","minecraft:netherrack","minecraft:note_block","minecraft:oak_door","minecraft:oak_fence","minecraft:oak_fence_gate","minecraft:oak_leaves","minecraft:oak_log","minecraft:oak_planks","minecraft:oak_sapling","minecraft:oak_sign","minecraft:oak_slab","minecraft:oak_stairs","minecraft:oak_trapdoor","minecraft:oak_wall_sign","minecraft:oak_wood","minecraft:observer","minecraft:obsidian","minecraft:orange_banner","minecraft:orange_bed","minecraft:orange_candle_cake","minecraft:orange_carpet","minecraft:orange_concrete","minecraft:orange_concrete_powder","minecraft:orange_glazed_terracotta","minecraft:orange_shulker_box","minecraft:orange_stained_glass","minecraft:orange_stained_glass_pane","minecraft:orange_terracotta","minecraft:orange_tulip","minecraft:orange_wall_banner","minecraft:orange_wool","minecraft:oxeye_daisy","minecraft:oxidized_copper","minecraft:oxidized_cut_copper","minecraft:oxidized_cut_copper_slab","minecraft:oxidized_cut_copper_stairs","minecraft:packed_ice","minecraft:peony","minecraft:petrified_oak_slab","minecraft:pink_banner","minecraft:pink_bed","minecraft:pink_candle_cake","minecraft:pink_carpet","minecraft:pink_concrete","minecraft:pink_concrete_powder","minecraft:pink_glazed_terracotta","minecraft:pink_shulker_box","minecraft:pink_stained_glass","minecraft:pink_stained_glass_pane","minecraft:pink_terracotta","minecraft:pink_tulip","minecraft:pink_wall_banner","minecraft:pink_wool","minecraft:piston","minecraft:piston_head","minecraft:player_head","minecraft:player_wall_head","minecraft:podzol","minecraft:polished_andesite","minecraft:polished_andesite_slab","minecraft:polished_andesite_stairs","minecraft:polished_basalt","minecraft:polished_blackstone","minecraft:polished_blackstone_brick_slab","minecraft:polished_blackstone_brick_stairs","minecraft:polished_blackstone_brick_wall","minecraft:polished_blackstone_bricks","minecraft:polished_blackstone_slab","minecraft:polished_blackstone_stairs","minecraft:polished_blackstone_wall","minecraft:polished_deepslate","minecraft:polished_deepslate_slab","minecraft:polished_deepslate_stairs","minecraft:polished_deepslate_wall","minecraft:polished_diorite","minecraft:polished_diorite_slab","minecraft:polished_diorite_stairs","minecraft:polished_granite","minecraft:polished_granite_slab","minecraft:polished_granite_stairs","minecraft:poppy","minecraft:potatoes","minecraft:potted_acacia_sapling","minecraft:potted_allium","minecraft:potted_azalea_bush","minecraft:potted_azure_bluet","minecraft:potted_bamboo","minecraft:potted_birch_sapling","minecraft:potted_blue_orchid","minecraft:potted_brown_mushroom","minecraft:potted_cactus","minecraft:potted_crimson_fungus","minecraft:potted_crimson_roots","minecraft:potted_dandelion","minecraft:potted_dark_oak_sapling","minecraft:potted_dead_bush","minecraft:potted_fern","minecraft:potted_flowering_azalea_bush","minecraft:potted_jungle_sapling","minecraft:potted_lily_of_the_valley","minecraft:potted_oak_sapling","minecraft:potted_orange_tulip","minecraft:potted_oxeye_daisy","minecraft:potted_pink_tulip","minecraft:potted_poppy","minecraft:potted_red_mushroom","minecraft:potted_red_tulip","minecraft:potted_spruce_sapling","minecraft:potted_warped_fungus","minecraft:potted_warped_roots","minecraft:potted_white_tulip","minecraft:potted_wither_rose","minecraft:powder_snow","minecraft:powder_snow_cauldron","minecraft:powered_rail","minecraft:prismarine","minecraft:prismarine_brick_slab","minecraft:prismarine_brick_stairs","minecraft:prismarine_bricks","minecraft:prismarine_slab","minecraft:prismarine_stairs","minecraft:prismarine_wall","minecraft:pumpkin","minecraft:purple_bed","minecraft:purple_candle_cake","minecraft:purple_carpet","minecraft:purple_concrete","minecraft:purple_concrete_powder","minecraft:purple_glazed_terracotta","minecraft:purple_shulker_box","minecraft:purple_stained_glass","minecraft:purple_stained_glass_pane","minecraft:purple_terracotta","minecraft:purple_wall_banner","minecraft:purple_wool","minecraft:purpur_block","minecraft:purpur_pillar","minecraft:purpur_slab","minecraft:purpur_stairs","minecraft:quartz_block","minecraft:quartz_bricks","minecraft:quartz_pillar","minecraft:quartz_slab","minecraft:quartz_stairs","minecraft:rail","minecraft:raw_copper_block","minecraft:raw_gold_block","minecraft:raw_iron_block","minecraft:red_banner","minecraft:red_bed","minecraft:red_candle_cake","minecraft:red_carpet","minecraft:red_concrete","minecraft:red_concrete_powder","minecraft:red_glazed_terracotta","minecraft:red_mushroom","minecraft:red_mushroom_block","minecraft:red_nether_brick_slab","minecraft:red_nether_brick_stairs","minecraft:red_nether_brick_wall","minecraft:red_nether_bricks","minecraft:red_sand","minecraft:red_sandstone","minecraft:red_sandstone_slab","minecraft:red_sandstone_stairs","minecraft:red_sandstone_wall","minecraft:red_shulker_box","minecraft:red_stained_glass","minecraft:red_stained_glass_pane","minecraft:red_terracotta","minecraft:red_tulip","minecraft:red_wall_banner","minecraft:red_wool","minecraft:redstone_block","minecraft:redstone_lamp","minecraft:redstone_ore","minecraft:repeating_command_block","minecraft:respawn_anchor","minecraft:rooted_dirt","minecraft:rose_bush","minecraft:sand","minecraft:sandstone","minecraft:sandstone_slab","minecraft:sandstone_stairs","minecraft:sandstone_wall","minecraft:scaffolding","minecraft:sculk_sensor","minecraft:sculk","minecraft:sea_lantern","minecraft:seagrass","minecraft:shroomlight","minecraft:shulker_box","minecraft:skeleton_skull","minecraft:skeleton_wall_skull","minecraft:slime_block","minecraft:small_amethyst_bud","minecraft:smithing_table","minecraft:smoker","minecraft:smooth_basalt","minecraft:smooth_quartz","minecraft:smooth_quartz_slab","minecraft:smooth_quartz_stairs","minecraft:smooth_red_sandstone","minecraft:smooth_red_sandstone_slab","minecraft:smooth_red_sandstone_stairs","minecraft:smooth_sandstone","minecraft:smooth_sandstone_slab","minecraft:smooth_sandstone_stairs","minecraft:smooth_stone","minecraft:smooth_stone_slab","minecraft:snow_block","minecraft:soul_campfire","minecraft:soul_fire","minecraft:soul_lantern","minecraft:soul_sand","minecraft:soul_soil","minecraft:spawner","minecraft:sponge","minecraft:spore_blossom","minecraft:spruce_door","minecraft:spruce_fence","minecraft:spruce_fence_gate","minecraft:spruce_leaves","minecraft:spruce_log","minecraft:spruce_planks","minecraft:spruce_slab","minecraft:spruce_stairs","minecraft:spruce_trapdoor","minecraft:spruce_wall_sign","minecraft:spruce_wood","minecraft:sticky_piston","minecraft:stone","minecraft:stone_brick_slab","minecraft:stone_brick_stairs","minecraft:stone_brick_wall","minecraft:stone_bricks","minecraft:stone_slab","minecraft:stone_stairs","minecraft:stonecutter","minecraft:stripped_acacia_log","minecraft:stripped_acacia_wood","minecraft:stripped_birch_log","minecraft:stripped_birch_wood","minecraft:stripped_crimson_hyphae","minecraft:stripped_crimson_stem","minecraft:stripped_dark_oak_log","minecraft:stripped_dark_oak_wood","minecraft:stripped_jungle_log","minecraft:stripped_jungle_wood","minecraft:stripped_oak_log","minecraft:stripped_oak_wood","minecraft:stripped_spruce_log","minecraft:stripped_spruce_wood","minecraft:stripped_warped_hyphae","minecraft:stripped_warped_stem","minecraft:sweet_berry_bush","minecraft:tall_grass","minecraft:tall_seagrass","minecraft:target","minecraft:terracotta","minecraft:tinted_glass","minecraft:tnt","minecraft:trapped_chest","minecraft:tripwire","minecraft:tripwire_hook","minecraft:tube_coral","minecraft:tube_coral_block","minecraft:tube_coral_fan","minecraft:tube_coral_wall_fan","minecraft:tuff","minecraft:turtle_egg","minecraft:twisting_vines_plant","minecraft:warped_door","minecraft:warped_fence","minecraft:warped_fence_gate","minecraft:warped_hyphae","minecraft:warped_nylium","minecraft:warped_planks","minecraft:warped_slab","minecraft:warped_stairs","minecraft:warped_trapdoor","minecraft:warped_wall_sign","minecraft:warped_wart_block","minecraft:water_cauldron","minecraft:waxed_copper_block","minecraft:waxed_cut_copper","minecraft:waxed_cut_copper_slab","minecraft:waxed_cut_copper_stairs","minecraft:waxed_exposed_copper","minecraft:waxed_exposed_cut_copper","minecraft:waxed_exposed_cut_copper_slab","minecraft:waxed_exposed_cut_copper_stairs","minecraft:waxed_oxidized_copper","minecraft:waxed_oxidized_cut_copper","minecraft:waxed_oxidized_cut_copper_slab","minecraft:waxed_oxidized_cut_copper_stairs","minecraft:waxed_weathered_copper","minecraft:waxed_weathered_cut_copper","minecraft:waxed_weathered_cut_copper_slab","minecraft:waxed_weathered_cut_copper_stairs","minecraft:weathered_copper","minecraft:weathered_cut_copper","minecraft:weathered_cut_copper_slab","minecraft:weathered_cut_copper_stairs","minecraft:weeping_vines_plant","minecraft:wet_sponge","minecraft:wheat","minecraft:white_banner","minecraft:white_bed","minecraft:white_candle_cake","minecraft:white_carpet","minecraft:white_concrete","minecraft:white_concrete_powder","minecraft:white_glazed_terracotta","minecraft:white_shulker_box","minecraft:white_stained_glass","minecraft:white_stained_glass_pane","minecraft:white_terracotta","minecraft:white_tulip","minecraft:white_wall_banner","minecraft:white_wool","minecraft:wither_rose","minecraft:wither_skeleton_skull","minecraft:wither_skeleton_wall_skull","minecraft:yellow_banner","minecraft:yellow_bed","minecraft:yellow_candle_cake","minecraft:yellow_carpet","minecraft:yellow_concrete","minecraft:yellow_concrete_powder","minecraft:yellow_glazed_terracotta","minecraft:yellow_shulker_box","minecraft:yellow_stained_glass","minecraft:yellow_stained_glass_pane","minecraft:yellow_terracotta","minecraft:yellow_wool"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_base.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_base.json new file mode 100644 index 0000000..afd629c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_base.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:acacia_door","minecraft:void_air","minecraft:air","minecraft:acacia_fence","minecraft:acacia_fence_gate","minecraft:acacia_leaves","minecraft:acacia_log","minecraft:acacia_planks","minecraft:acacia_sapling","minecraft:acacia_sign","minecraft:acacia_slab","minecraft:acacia_stairs","minecraft:acacia_trapdoor","minecraft:acacia_wall_sign","minecraft:acacia_wood","minecraft:activator_rail","minecraft:allium","minecraft:ancient_debris","minecraft:andesite","minecraft:andesite_slab","minecraft:andesite_stairs","minecraft:andesite_wall","minecraft:anvil","minecraft:attached_melon_stem","minecraft:attached_pumpkin_stem","minecraft:azalea","minecraft:azalea_leaves","minecraft:azure_bluet","minecraft:bamboo","minecraft:bamboo_sapling","minecraft:barrel","minecraft:barrier","minecraft:basalt","minecraft:beacon","minecraft:bee_nest","minecraft:beehive","minecraft:birch_door","minecraft:birch_fence","minecraft:birch_fence_gate","minecraft:birch_leaves","minecraft:birch_log","minecraft:birch_planks","minecraft:birch_pressure_plate","minecraft:birch_sapling","minecraft:birch_sign","minecraft:birch_slab","minecraft:birch_stairs","minecraft:birch_trapdoor","minecraft:birch_wall_sign","minecraft:birch_wood","minecraft:black_banner","minecraft:black_bed","minecraft:black_candle_cake","minecraft:black_carpet","minecraft:black_concrete","minecraft:black_concrete_powder","minecraft:black_glazed_terracotta","minecraft:black_shulker_box","minecraft:black_stained_glass","minecraft:bedrock","minecraft:black_stained_glass_pane","minecraft:black_terracotta","minecraft:black_wall_banner","minecraft:black_wool","minecraft:blackstone_slab","minecraft:blackstone_stairs","minecraft:blackstone_wall","minecraft:blast_furnace","minecraft:blue_banner","minecraft:blue_bed","minecraft:blue_candle_cake","minecraft:blue_carpet","minecraft:blue_concrete_powder","minecraft:blue_glazed_terracotta","minecraft:blue_orchid","minecraft:blue_shulker_box","minecraft:blue_stained_glass","minecraft:blue_stained_glass_pane","minecraft:blue_terracotta","minecraft:blue_wall_banner","minecraft:blue_wool","minecraft:bone_block","minecraft:bookshelf","minecraft:brain_coral","minecraft:brain_coral_block","minecraft:brain_coral_fan","minecraft:brain_coral_wall_fan","minecraft:brewing_stand","minecraft:brick_slab","minecraft:brick_stairs","minecraft:brick_wall","minecraft:bricks","minecraft:brown_banner","minecraft:brown_bed","minecraft:brown_candle_cake","minecraft:brown_carpet","minecraft:brown_concrete","minecraft:brown_concrete_powder","minecraft:brown_glazed_terracotta","minecraft:brown_mushroom","minecraft:brown_mushroom_block","minecraft:brown_shulker_box","minecraft:brown_stained_glass","minecraft:brown_stained_glass_pane","minecraft:brown_terracotta","minecraft:brown_wall_banner","minecraft:brown_wool","minecraft:bubble_column","minecraft:bubble_coral","minecraft:bubble_coral_block","minecraft:bubble_coral_fan","minecraft:bubble_coral_wall_fan","minecraft:budding_amethyst","minecraft:cactus","minecraft:cake","minecraft:campfire","minecraft:candle_cake","minecraft:carrots","minecraft:cartography_table","minecraft:carved_pumpkin","minecraft:cauldron","minecraft:chain","minecraft:chain_command_block","minecraft:chest","minecraft:chipped_anvil","minecraft:chiseled_deepslate","minecraft:chiseled_nether_bricks","minecraft:chiseled_polished_blackstone","minecraft:chiseled_quartz_block","minecraft:chiseled_red_sandstone","minecraft:chiseled_sandstone","minecraft:chiseled_stone_bricks","minecraft:chorus_flower","minecraft:chorus_plant","minecraft:clay","minecraft:coal_block","minecraft:coal_ore","minecraft:coarse_dirt","minecraft:cobbled_deepslate","minecraft:cobbled_deepslate_slab","minecraft:cobbled_deepslate_stairs","minecraft:cobbled_deepslate_wall","minecraft:cobblestone","minecraft:cobblestone_slab","minecraft:cobblestone_stairs","minecraft:cobblestone_wall","minecraft:cocoa","minecraft:command_block","minecraft:comparator","minecraft:composter","minecraft:conduit","minecraft:copper_block","minecraft:copper_ore","minecraft:cracked_deepslate_bricks","minecraft:cracked_deepslate_tiles","minecraft:cracked_nether_bricks","minecraft:cracked_polished_blackstone_bricks","minecraft:cracked_stone_bricks","minecraft:crafting_table","minecraft:creeper_head","minecraft:creeper_wall_head","minecraft:crimson_door","minecraft:crimson_fence","minecraft:crimson_fence_gate","minecraft:crimson_fungus","minecraft:crimson_hyphae","minecraft:crimson_nylium","minecraft:crimson_planks","minecraft:crimson_pressure_plate","minecraft:crimson_roots","minecraft:crimson_sign","minecraft:crimson_slab","minecraft:crimson_stairs","minecraft:crimson_stem","minecraft:crimson_trapdoor","minecraft:crimson_wall_sign","minecraft:crying_obsidian","minecraft:cut_copper","minecraft:cut_copper_slab","minecraft:cut_copper_stairs","minecraft:cut_red_sandstone","minecraft:cut_red_sandstone_slab","minecraft:cut_sandstone","minecraft:cut_sandstone_slab","minecraft:cyan_banner","minecraft:cyan_bed","minecraft:cyan_candle_cake","minecraft:cyan_carpet","minecraft:cyan_concrete","minecraft:cyan_concrete_powder","minecraft:cyan_glazed_terracotta","minecraft:cyan_shulker_box","minecraft:cyan_stained_glass","minecraft:cyan_stained_glass_pane","minecraft:cyan_terracotta","minecraft:cyan_wall_banner","minecraft:cyan_wool","minecraft:damaged_anvil","minecraft:dandelion","minecraft:dark_oak_door","minecraft:dark_oak_fence","minecraft:dark_oak_fence_gate","minecraft:dark_oak_leaves","minecraft:dark_oak_log","minecraft:dark_oak_planks","minecraft:dark_oak_pressure_plate","minecraft:dark_oak_sapling","minecraft:dark_oak_sign","minecraft:dark_oak_slab","minecraft:dark_oak_stairs","minecraft:dark_oak_trapdoor","minecraft:dark_oak_wall_sign","minecraft:dark_oak_wood","minecraft:dark_prismarine","minecraft:dark_prismarine_slab","minecraft:dark_prismarine_stairs","minecraft:daylight_detector","minecraft:dead_brain_coral","minecraft:dead_brain_coral_block","minecraft:dead_brain_coral_fan","minecraft:dead_brain_coral_wall_fan","minecraft:dead_bubble_coral","minecraft:dead_bubble_coral_block","minecraft:dead_bubble_coral_fan","minecraft:dead_fire_coral_block","minecraft:dead_fire_coral_fan","minecraft:dead_fire_coral_wall_fan","minecraft:dead_horn_coral","minecraft:dead_horn_coral_block","minecraft:dead_horn_coral_fan","minecraft:dead_horn_coral_wall_fan","minecraft:dead_tube_coral","minecraft:dead_tube_coral_block","minecraft:dead_tube_coral_fan","minecraft:dead_tube_coral_wall_fan","minecraft:deepslate_brick_slab","minecraft:deepslate_brick_stairs","minecraft:deepslate_brick_wall","minecraft:deepslate_bricks","minecraft:deepslate_tile_slab","minecraft:deepslate_tile_stairs","minecraft:deepslate_tile_wall","minecraft:deepslate_tiles","minecraft:detector_rail","minecraft:diamond_block","minecraft:diamond_ore","minecraft:diorite","minecraft:diorite_slab","minecraft:diorite_stairs","minecraft:diorite_wall","minecraft:dirt","minecraft:dirt_path","minecraft:dispenser","minecraft:dragon_egg","minecraft:dragon_head","minecraft:dragon_wall_head","minecraft:dried_kelp_block","minecraft:dripstone_block","minecraft:dropper","minecraft:emerald_block","minecraft:emerald_ore","minecraft:enchanting_table","minecraft:end_gateway","minecraft:end_portal","minecraft:end_portal_frame","minecraft:end_rod","minecraft:end_stone","minecraft:end_stone_brick_slab","minecraft:end_stone_brick_stairs","minecraft:end_stone_brick_wall","minecraft:end_stone_bricks","minecraft:ender_chest","minecraft:exposed_copper","minecraft:exposed_cut_copper","minecraft:exposed_cut_copper_slab","minecraft:exposed_cut_copper_stairs","minecraft:farmland","minecraft:fire_coral","minecraft:fire_coral_block","minecraft:fire_coral_fan","minecraft:fire_coral_wall_fan","minecraft:fletching_table","minecraft:flowering_azalea","minecraft:flowering_azalea_leaves","minecraft:frosted_ice","minecraft:furnace","minecraft:gilded_blackstone","minecraft:glass","minecraft:glass_pane","minecraft:glowstone","minecraft:gold_block","minecraft:gold_ore","minecraft:granite","minecraft:granite_slab","minecraft:granite_stairs","minecraft:granite_wall","minecraft:grass_block","minecraft:gray_banner","minecraft:gray_bed","minecraft:gray_candle_cake","minecraft:gray_carpet","minecraft:gray_concrete","minecraft:gray_concrete_powder","minecraft:gray_glazed_terracotta","minecraft:gray_shulker_box","minecraft:gray_stained_glass","minecraft:gray_stained_glass_pane","minecraft:gray_terracotta","minecraft:gray_wall_banner","minecraft:gray_wool","minecraft:green_banner","minecraft:green_bed","minecraft:green_candle_cake","minecraft:green_carpet","minecraft:green_concrete","minecraft:green_concrete_powder","minecraft:green_glazed_terracotta","minecraft:green_shulker_box","minecraft:green_stained_glass","minecraft:green_stained_glass_pane","minecraft:green_terracotta","minecraft:green_wall_banner","minecraft:green_wool","minecraft:grindstone","minecraft:hanging_roots","minecraft:hay_block","minecraft:heavy_weighted_pressure_plate","minecraft:honey_block","minecraft:honeycomb_block","minecraft:hopper","minecraft:horn_coral","minecraft:horn_coral_block","minecraft:horn_coral_fan","minecraft:horn_coral_wall_fan","minecraft:infested_chiseled_stone_bricks","minecraft:infested_cobblestone","minecraft:infested_cracked_stone_bricks","minecraft:infested_deepslate","minecraft:infested_mossy_stone_bricks","minecraft:infested_stone","minecraft:infested_stone_bricks","minecraft:iron_bars","minecraft:iron_block","minecraft:iron_door","minecraft:iron_ore","minecraft:iron_trapdoor","minecraft:jack_o_lantern","minecraft:jigsaw","minecraft:jukebox","minecraft:jungle_door","minecraft:jungle_fence","minecraft:jungle_fence_gate","minecraft:jungle_leaves","minecraft:jungle_log","minecraft:jungle_planks","minecraft:jungle_pressure_plate","minecraft:jungle_sapling","minecraft:jungle_sign","minecraft:jungle_slab","minecraft:jungle_stairs","minecraft:jungle_trapdoor","minecraft:jungle_wall_sign","minecraft:jungle_wood","minecraft:kelp","minecraft:kelp_plant","minecraft:ladder","minecraft:lantern","minecraft:lapis_block","minecraft:lapis_ore","minecraft:large_amethyst_bud","minecraft:large_fern","minecraft:lava_cauldron","minecraft:lectern","minecraft:lever","minecraft:light","minecraft:light_blue_banner","minecraft:light_blue_bed","minecraft:light_blue_candle_cake","minecraft:light_blue_carpet","minecraft:light_blue_concrete","minecraft:light_blue_concrete_powder","minecraft:light_blue_glazed_terracotta","minecraft:light_blue_shulker_box","minecraft:light_blue_stained_glass","minecraft:light_blue_stained_glass_pane","minecraft:light_blue_terracotta","minecraft:light_blue_wall_banner","minecraft:light_blue_wool","minecraft:light_gray_banner","minecraft:light_gray_bed","minecraft:light_gray_candle_cake","minecraft:light_gray_carpet","minecraft:light_gray_concrete","minecraft:light_gray_concrete_powder","minecraft:light_gray_glazed_terracotta","minecraft:light_gray_shulker_box","minecraft:light_gray_stained_glass","minecraft:light_gray_stained_glass_pane","minecraft:light_gray_terracotta","minecraft:light_gray_wall_banner","minecraft:light_gray_wool","minecraft:light_weighted_pressure_plate","minecraft:lightning_rod","minecraft:lilac","minecraft:lily_of_the_valley","minecraft:lily_pad","minecraft:lime_banner","minecraft:lime_bed","minecraft:lime_candle_cake","minecraft:lime_carpet","minecraft:lime_concrete","minecraft:lime_concrete_powder","minecraft:lime_glazed_terracotta","minecraft:lime_shulker_box","minecraft:lime_stained_glass","minecraft:lime_stained_glass_pane","minecraft:lime_terracotta","minecraft:lime_wall_banner","minecraft:lime_wool","minecraft:lodestone","minecraft:loom","minecraft:magenta_banner","minecraft:magenta_bed","minecraft:magenta_candle_cake","minecraft:magenta_carpet","minecraft:magenta_concrete","minecraft:magenta_concrete_powder","minecraft:magenta_glazed_terracotta","minecraft:magenta_shulker_box","minecraft:magenta_stained_glass","minecraft:magenta_stained_glass_pane","minecraft:magenta_terracotta","minecraft:magenta_wall_banner","minecraft:magenta_wool","minecraft:magma_block","minecraft:medium_amethyst_bud","minecraft:melon","minecraft:melon_stem","minecraft:moss_carpet","minecraft:mossy_cobblestone","minecraft:mossy_cobblestone_slab","minecraft:mossy_cobblestone_stairs","minecraft:mossy_cobblestone_wall","minecraft:mossy_stone_brick_slab","minecraft:mossy_stone_brick_stairs","minecraft:mossy_stone_brick_wall","minecraft:mossy_stone_bricks","minecraft:moving_piston","minecraft:mushroom_stem","minecraft:mycelium","minecraft:nether_brick_fence","minecraft:nether_brick_slab","minecraft:nether_brick_stairs","minecraft:nether_brick_wall","minecraft:nether_bricks","minecraft:nether_gold_ore","minecraft:nether_portal","minecraft:nether_quartz_ore","minecraft:nether_sprouts","minecraft:nether_wart","minecraft:nether_wart_block","minecraft:netherite_block","minecraft:netherrack","minecraft:note_block","minecraft:oak_door","minecraft:oak_fence","minecraft:oak_fence_gate","minecraft:oak_leaves","minecraft:oak_log","minecraft:oak_planks","minecraft:oak_sapling","minecraft:oak_sign","minecraft:oak_slab","minecraft:oak_stairs","minecraft:oak_trapdoor","minecraft:oak_wall_sign","minecraft:oak_wood","minecraft:observer","minecraft:obsidian","minecraft:orange_banner","minecraft:orange_bed","minecraft:orange_candle_cake","minecraft:orange_carpet","minecraft:orange_concrete_powder","minecraft:orange_glazed_terracotta","minecraft:orange_shulker_box","minecraft:orange_stained_glass","minecraft:orange_stained_glass_pane","minecraft:orange_terracotta","minecraft:orange_tulip","minecraft:orange_wall_banner","minecraft:orange_wool","minecraft:oxeye_daisy","minecraft:oxidized_copper","minecraft:oxidized_cut_copper","minecraft:oxidized_cut_copper_slab","minecraft:oxidized_cut_copper_stairs","minecraft:peony","minecraft:petrified_oak_slab","minecraft:pink_banner","minecraft:pink_bed","minecraft:pink_candle_cake","minecraft:pink_carpet","minecraft:pink_concrete","minecraft:pink_concrete_powder","minecraft:pink_glazed_terracotta","minecraft:pink_shulker_box","minecraft:pink_stained_glass","minecraft:pink_stained_glass_pane","minecraft:pink_terracotta","minecraft:pink_tulip","minecraft:pink_wall_banner","minecraft:pink_wool","minecraft:piston","minecraft:piston_head","minecraft:player_head","minecraft:player_wall_head","minecraft:podzol","minecraft:polished_andesite","minecraft:polished_andesite_slab","minecraft:polished_andesite_stairs","minecraft:polished_basalt","minecraft:polished_blackstone","minecraft:polished_blackstone_brick_slab","minecraft:polished_blackstone_brick_stairs","minecraft:polished_blackstone_brick_wall","minecraft:polished_blackstone_bricks","minecraft:polished_blackstone_slab","minecraft:polished_blackstone_stairs","minecraft:polished_blackstone_wall","minecraft:polished_deepslate","minecraft:polished_deepslate_slab","minecraft:polished_deepslate_stairs","minecraft:polished_deepslate_wall","minecraft:polished_diorite","minecraft:polished_diorite_slab","minecraft:polished_diorite_stairs","minecraft:polished_granite","minecraft:polished_granite_slab","minecraft:polished_granite_stairs","minecraft:poppy","minecraft:potatoes","minecraft:potted_acacia_sapling","minecraft:potted_allium","minecraft:potted_azalea_bush","minecraft:potted_azure_bluet","minecraft:potted_bamboo","minecraft:potted_birch_sapling","minecraft:potted_blue_orchid","minecraft:potted_brown_mushroom","minecraft:potted_cactus","minecraft:potted_crimson_fungus","minecraft:potted_crimson_roots","minecraft:potted_dandelion","minecraft:potted_dark_oak_sapling","minecraft:potted_dead_bush","minecraft:potted_fern","minecraft:potted_flowering_azalea_bush","minecraft:potted_jungle_sapling","minecraft:potted_lily_of_the_valley","minecraft:potted_oak_sapling","minecraft:potted_orange_tulip","minecraft:potted_oxeye_daisy","minecraft:potted_pink_tulip","minecraft:potted_poppy","minecraft:potted_red_mushroom","minecraft:potted_red_tulip","minecraft:potted_spruce_sapling","minecraft:potted_warped_fungus","minecraft:potted_warped_roots","minecraft:potted_white_tulip","minecraft:potted_wither_rose","minecraft:powder_snow","minecraft:powder_snow_cauldron","minecraft:powered_rail","minecraft:prismarine","minecraft:prismarine_brick_slab","minecraft:prismarine_brick_stairs","minecraft:prismarine_bricks","minecraft:prismarine_slab","minecraft:prismarine_stairs","minecraft:prismarine_wall","minecraft:pumpkin","minecraft:purple_bed","minecraft:purple_candle_cake","minecraft:purple_carpet","minecraft:purple_concrete","minecraft:purple_concrete_powder","minecraft:purple_glazed_terracotta","minecraft:purple_shulker_box","minecraft:purple_stained_glass","minecraft:purple_stained_glass_pane","minecraft:purple_terracotta","minecraft:purple_wall_banner","minecraft:purple_wool","minecraft:purpur_block","minecraft:purpur_pillar","minecraft:purpur_slab","minecraft:purpur_stairs","minecraft:quartz_block","minecraft:quartz_bricks","minecraft:quartz_pillar","minecraft:quartz_slab","minecraft:quartz_stairs","minecraft:rail","minecraft:raw_copper_block","minecraft:raw_gold_block","minecraft:raw_iron_block","minecraft:red_banner","minecraft:red_bed","minecraft:red_candle_cake","minecraft:red_carpet","minecraft:red_concrete","minecraft:red_concrete_powder","minecraft:red_glazed_terracotta","minecraft:red_mushroom","minecraft:red_mushroom_block","minecraft:red_nether_brick_slab","minecraft:red_nether_brick_stairs","minecraft:red_nether_brick_wall","minecraft:red_nether_bricks","minecraft:red_sand","minecraft:red_sandstone","minecraft:red_sandstone_slab","minecraft:red_sandstone_stairs","minecraft:red_sandstone_wall","minecraft:red_shulker_box","minecraft:red_stained_glass","minecraft:red_stained_glass_pane","minecraft:red_terracotta","minecraft:red_tulip","minecraft:red_wall_banner","minecraft:red_wool","minecraft:redstone_block","minecraft:redstone_lamp","minecraft:redstone_ore","minecraft:repeating_command_block","minecraft:respawn_anchor","minecraft:rooted_dirt","minecraft:rose_bush","minecraft:sand","minecraft:sandstone","minecraft:sandstone_slab","minecraft:sandstone_stairs","minecraft:sandstone_wall","minecraft:scaffolding","minecraft:sea_lantern","minecraft:seagrass","minecraft:shroomlight","minecraft:shulker_box","minecraft:skeleton_skull","minecraft:skeleton_wall_skull","minecraft:slime_block","minecraft:small_amethyst_bud","minecraft:smithing_table","minecraft:smoker","minecraft:smooth_basalt","minecraft:smooth_quartz","minecraft:smooth_quartz_slab","minecraft:smooth_quartz_stairs","minecraft:smooth_red_sandstone","minecraft:smooth_red_sandstone_slab","minecraft:smooth_red_sandstone_stairs","minecraft:smooth_sandstone","minecraft:smooth_sandstone_slab","minecraft:smooth_sandstone_stairs","minecraft:smooth_stone","minecraft:smooth_stone_slab","minecraft:snow_block","minecraft:soul_campfire","minecraft:soul_fire","minecraft:soul_lantern","minecraft:soul_sand","minecraft:soul_soil","minecraft:spawner","minecraft:sponge","minecraft:spore_blossom","minecraft:spruce_door","minecraft:spruce_fence","minecraft:spruce_fence_gate","minecraft:spruce_leaves","minecraft:spruce_log","minecraft:spruce_planks","minecraft:spruce_slab","minecraft:spruce_stairs","minecraft:spruce_trapdoor","minecraft:spruce_wall_sign","minecraft:spruce_wood","minecraft:sticky_piston","minecraft:stone","minecraft:stone_brick_slab","minecraft:stone_brick_stairs","minecraft:stone_brick_wall","minecraft:stone_bricks","minecraft:stone_slab","minecraft:stone_stairs","minecraft:stonecutter","minecraft:stripped_acacia_log","minecraft:stripped_acacia_wood","minecraft:stripped_birch_log","minecraft:stripped_birch_wood","minecraft:stripped_crimson_hyphae","minecraft:stripped_crimson_stem","minecraft:stripped_dark_oak_log","minecraft:stripped_dark_oak_wood","minecraft:stripped_jungle_log","minecraft:stripped_jungle_wood","minecraft:stripped_oak_log","minecraft:stripped_oak_wood","minecraft:stripped_spruce_log","minecraft:stripped_spruce_wood","minecraft:stripped_warped_hyphae","minecraft:stripped_warped_stem","minecraft:sweet_berry_bush","minecraft:tall_grass","minecraft:tall_seagrass","minecraft:target","minecraft:terracotta","minecraft:tinted_glass","minecraft:tnt","minecraft:trapped_chest","minecraft:tripwire","minecraft:tripwire_hook","minecraft:tube_coral","minecraft:tube_coral_block","minecraft:tube_coral_fan","minecraft:tube_coral_wall_fan","minecraft:turtle_egg","minecraft:twisting_vines_plant","minecraft:warped_door","minecraft:warped_fence","minecraft:warped_fence_gate","minecraft:warped_hyphae","minecraft:warped_nylium","minecraft:warped_planks","minecraft:warped_slab","minecraft:warped_stairs","minecraft:warped_trapdoor","minecraft:warped_wall_sign","minecraft:warped_wart_block","minecraft:water_cauldron","minecraft:waxed_copper_block","minecraft:waxed_cut_copper","minecraft:waxed_cut_copper_slab","minecraft:waxed_cut_copper_stairs","minecraft:waxed_exposed_copper","minecraft:waxed_exposed_cut_copper","minecraft:waxed_exposed_cut_copper_slab","minecraft:waxed_exposed_cut_copper_stairs","minecraft:waxed_oxidized_copper","minecraft:waxed_oxidized_cut_copper","minecraft:waxed_oxidized_cut_copper_slab","minecraft:waxed_oxidized_cut_copper_stairs","minecraft:waxed_weathered_copper","minecraft:waxed_weathered_cut_copper","minecraft:waxed_weathered_cut_copper_slab","minecraft:waxed_weathered_cut_copper_stairs","minecraft:weathered_copper","minecraft:weathered_cut_copper","minecraft:weathered_cut_copper_slab","minecraft:weathered_cut_copper_stairs","minecraft:weeping_vines_plant","minecraft:wet_sponge","minecraft:wheat","minecraft:white_banner","minecraft:white_bed","minecraft:white_candle_cake","minecraft:white_carpet","minecraft:white_concrete","minecraft:white_concrete_powder","minecraft:white_glazed_terracotta","minecraft:white_shulker_box","minecraft:white_stained_glass","minecraft:white_stained_glass_pane","minecraft:white_terracotta","minecraft:white_tulip","minecraft:white_wall_banner","minecraft:white_wool","minecraft:wither_rose","minecraft:wither_skeleton_skull","minecraft:wither_skeleton_wall_skull","minecraft:yellow_banner","minecraft:yellow_bed","minecraft:void_air","minecraft:yellow_candle_cake","minecraft:yellow_carpet","minecraft:yellow_concrete","minecraft:yellow_concrete_powder","minecraft:yellow_glazed_terracotta","minecraft:yellow_shulker_box","minecraft:yellow_stained_glass","minecraft:yellow_stained_glass_pane","minecraft:yellow_terracotta","minecraft:yellow_wool"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_lava.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_lava.json new file mode 100644 index 0000000..26d8700 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_lava.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:acacia_door","minecraft:void_air","minecraft:air","minecraft:acacia_fence","minecraft:acacia_fence_gate","minecraft:acacia_leaves","minecraft:acacia_log","minecraft:acacia_planks","minecraft:acacia_sapling","minecraft:acacia_sign","minecraft:acacia_slab","minecraft:acacia_stairs","minecraft:acacia_trapdoor","minecraft:acacia_wall_sign","minecraft:acacia_wood","minecraft:activator_rail","minecraft:allium","minecraft:amethyst_block","minecraft:amethyst_cluster","minecraft:ancient_debris","minecraft:andesite","minecraft:andesite_slab","minecraft:andesite_stairs","minecraft:andesite_wall","minecraft:anvil","minecraft:attached_melon_stem","minecraft:attached_pumpkin_stem","minecraft:azalea","minecraft:azalea_leaves","minecraft:azure_bluet","minecraft:bamboo","minecraft:bamboo_sapling","minecraft:barrel","minecraft:barrier","minecraft:basalt","minecraft:beacon","minecraft:bee_nest","minecraft:beehive","minecraft:birch_door","minecraft:birch_fence","minecraft:birch_fence_gate","minecraft:birch_leaves","minecraft:birch_log","minecraft:birch_planks","minecraft:birch_pressure_plate","minecraft:birch_sapling","minecraft:birch_sign","minecraft:birch_slab","minecraft:birch_stairs","minecraft:birch_trapdoor","minecraft:birch_wall_sign","minecraft:birch_wood","minecraft:black_banner","minecraft:black_bed","minecraft:black_candle_cake","minecraft:black_carpet","minecraft:black_concrete","minecraft:black_concrete_powder","minecraft:black_glazed_terracotta","minecraft:black_shulker_box","minecraft:black_stained_glass","minecraft:bedrock","minecraft:black_stained_glass_pane","minecraft:black_terracotta","minecraft:black_wall_banner","minecraft:black_wool","minecraft:blackstone","minecraft:blackstone_slab","minecraft:blackstone_stairs","minecraft:blackstone_wall","minecraft:blast_furnace","minecraft:blue_banner","minecraft:blue_bed","minecraft:blue_candle_cake","minecraft:blue_carpet","minecraft:blue_concrete","minecraft:blue_concrete_powder","minecraft:blue_glazed_terracotta","minecraft:blue_ice","minecraft:blue_orchid","minecraft:blue_shulker_box","minecraft:blue_stained_glass","minecraft:blue_stained_glass_pane","minecraft:blue_terracotta","minecraft:blue_wall_banner","minecraft:blue_wool","minecraft:bone_block","minecraft:bookshelf","minecraft:brain_coral","minecraft:brain_coral_block","minecraft:brain_coral_fan","minecraft:brain_coral_wall_fan","minecraft:brewing_stand","minecraft:brick_slab","minecraft:brick_stairs","minecraft:brick_wall","minecraft:bricks","minecraft:brown_banner","minecraft:brown_bed","minecraft:brown_candle_cake","minecraft:brown_carpet","minecraft:brown_concrete","minecraft:brown_concrete_powder","minecraft:brown_glazed_terracotta","minecraft:brown_mushroom","minecraft:brown_mushroom_block","minecraft:brown_shulker_box","minecraft:brown_stained_glass","minecraft:brown_stained_glass_pane","minecraft:brown_terracotta","minecraft:brown_wall_banner","minecraft:brown_wool","minecraft:bubble_column","minecraft:bubble_coral","minecraft:bubble_coral_block","minecraft:bubble_coral_fan","minecraft:bubble_coral_wall_fan","minecraft:budding_amethyst","minecraft:cactus","minecraft:cake","minecraft:calcite","minecraft:campfire","minecraft:candle_cake","minecraft:carrots","minecraft:cartography_table","minecraft:carved_pumpkin","minecraft:cauldron","minecraft:chain","minecraft:chain_command_block","minecraft:chest","minecraft:chipped_anvil","minecraft:chiseled_deepslate","minecraft:chiseled_nether_bricks","minecraft:chiseled_polished_blackstone","minecraft:chiseled_quartz_block","minecraft:chiseled_red_sandstone","minecraft:chiseled_sandstone","minecraft:chiseled_stone_bricks","minecraft:chorus_flower","minecraft:chorus_plant","minecraft:clay","minecraft:coal_block","minecraft:coal_ore","minecraft:coarse_dirt","minecraft:cobbled_deepslate","minecraft:cobbled_deepslate_slab","minecraft:cobbled_deepslate_stairs","minecraft:cobbled_deepslate_wall","minecraft:cobblestone","minecraft:cobblestone_slab","minecraft:cobblestone_stairs","minecraft:cobblestone_wall","minecraft:cocoa","minecraft:command_block","minecraft:comparator","minecraft:composter","minecraft:conduit","minecraft:copper_block","minecraft:copper_ore","minecraft:cracked_deepslate_bricks","minecraft:cracked_deepslate_tiles","minecraft:cracked_nether_bricks","minecraft:cracked_polished_blackstone_bricks","minecraft:cracked_stone_bricks","minecraft:crafting_table","minecraft:creeper_head","minecraft:creeper_wall_head","minecraft:crimson_door","minecraft:crimson_fence","minecraft:crimson_fence_gate","minecraft:crimson_fungus","minecraft:crimson_hyphae","minecraft:crimson_nylium","minecraft:crimson_planks","minecraft:crimson_pressure_plate","minecraft:crimson_roots","minecraft:crimson_sign","minecraft:crimson_slab","minecraft:crimson_stairs","minecraft:crimson_stem","minecraft:crimson_trapdoor","minecraft:crimson_wall_sign","minecraft:crying_obsidian","minecraft:cut_copper","minecraft:cut_copper_slab","minecraft:cut_copper_stairs","minecraft:cut_red_sandstone","minecraft:cut_red_sandstone_slab","minecraft:cut_sandstone","minecraft:cut_sandstone_slab","minecraft:cyan_banner","minecraft:cyan_bed","minecraft:cyan_candle_cake","minecraft:cyan_carpet","minecraft:cyan_concrete","minecraft:cyan_concrete_powder","minecraft:cyan_glazed_terracotta","minecraft:cyan_shulker_box","minecraft:cyan_stained_glass","minecraft:cyan_stained_glass_pane","minecraft:cyan_terracotta","minecraft:cyan_wall_banner","minecraft:cyan_wool","minecraft:damaged_anvil","minecraft:dandelion","minecraft:dark_oak_door","minecraft:dark_oak_fence","minecraft:dark_oak_fence_gate","minecraft:dark_oak_leaves","minecraft:dark_oak_log","minecraft:dark_oak_planks","minecraft:dark_oak_pressure_plate","minecraft:dark_oak_sapling","minecraft:dark_oak_sign","minecraft:dark_oak_slab","minecraft:dark_oak_stairs","minecraft:dark_oak_trapdoor","minecraft:dark_oak_wall_sign","minecraft:dark_oak_wood","minecraft:dark_prismarine","minecraft:dark_prismarine_slab","minecraft:dark_prismarine_stairs","minecraft:daylight_detector","minecraft:dead_brain_coral","minecraft:dead_brain_coral_block","minecraft:dead_brain_coral_fan","minecraft:dead_brain_coral_wall_fan","minecraft:dead_bubble_coral","minecraft:dead_bubble_coral_block","minecraft:dead_bubble_coral_fan","minecraft:dead_fire_coral_block","minecraft:dead_fire_coral_fan","minecraft:dead_fire_coral_wall_fan","minecraft:dead_horn_coral","minecraft:dead_horn_coral_block","minecraft:dead_horn_coral_fan","minecraft:dead_horn_coral_wall_fan","minecraft:dead_tube_coral","minecraft:dead_tube_coral_block","minecraft:dead_tube_coral_fan","minecraft:dead_tube_coral_wall_fan","minecraft:deepslate","minecraft:deepslate_brick_slab","minecraft:deepslate_brick_stairs","minecraft:deepslate_brick_wall","minecraft:deepslate_bricks","minecraft:deepslate_coal_ore","minecraft:deepslate_copper_ore","minecraft:deepslate_diamond_ore","minecraft:deepslate_emerald_ore","minecraft:deepslate_gold_ore","minecraft:deepslate_iron_ore","minecraft:deepslate_lapis_ore","minecraft:deepslate_redstone_ore","minecraft:deepslate_tile_slab","minecraft:deepslate_tile_stairs","minecraft:deepslate_tile_wall","minecraft:deepslate_tiles","minecraft:detector_rail","minecraft:diamond_block","minecraft:diamond_ore","minecraft:diorite","minecraft:diorite_slab","minecraft:diorite_stairs","minecraft:diorite_wall","minecraft:dirt","minecraft:dirt_path","minecraft:dispenser","minecraft:dragon_egg","minecraft:dragon_head","minecraft:dragon_wall_head","minecraft:dried_kelp_block","minecraft:dripstone_block","minecraft:dropper","minecraft:emerald_block","minecraft:emerald_ore","minecraft:enchanting_table","minecraft:end_gateway","minecraft:end_portal","minecraft:end_portal_frame","minecraft:end_rod","minecraft:end_stone","minecraft:end_stone_brick_slab","minecraft:end_stone_brick_stairs","minecraft:end_stone_brick_wall","minecraft:end_stone_bricks","minecraft:ender_chest","minecraft:exposed_copper","minecraft:exposed_cut_copper","minecraft:exposed_cut_copper_slab","minecraft:exposed_cut_copper_stairs","minecraft:farmland","minecraft:fire_coral","minecraft:fire_coral_block","minecraft:fire_coral_fan","minecraft:fire_coral_wall_fan","minecraft:fletching_table","minecraft:flowering_azalea","minecraft:flowering_azalea_leaves","minecraft:frosted_ice","minecraft:furnace","minecraft:gilded_blackstone","minecraft:glass","minecraft:glass_pane","minecraft:glowstone","minecraft:gold_block","minecraft:gold_ore","minecraft:granite","minecraft:granite_slab","minecraft:granite_stairs","minecraft:granite_wall","minecraft:grass_block","minecraft:gravel","minecraft:gray_banner","minecraft:gray_bed","minecraft:gray_candle_cake","minecraft:gray_carpet","minecraft:gray_concrete","minecraft:gray_concrete_powder","minecraft:gray_glazed_terracotta","minecraft:gray_shulker_box","minecraft:gray_stained_glass","minecraft:gray_stained_glass_pane","minecraft:gray_terracotta","minecraft:gray_wall_banner","minecraft:gray_wool","minecraft:green_banner","minecraft:green_bed","minecraft:green_candle_cake","minecraft:green_carpet","minecraft:green_concrete","minecraft:green_concrete_powder","minecraft:green_glazed_terracotta","minecraft:green_shulker_box","minecraft:green_stained_glass","minecraft:green_stained_glass_pane","minecraft:green_terracotta","minecraft:green_wall_banner","minecraft:green_wool","minecraft:grindstone","minecraft:hanging_roots","minecraft:hay_block","minecraft:heavy_weighted_pressure_plate","minecraft:honey_block","minecraft:honeycomb_block","minecraft:hopper","minecraft:horn_coral","minecraft:horn_coral_block","minecraft:horn_coral_fan","minecraft:horn_coral_wall_fan","minecraft:ice","minecraft:infested_chiseled_stone_bricks","minecraft:infested_cobblestone","minecraft:infested_cracked_stone_bricks","minecraft:infested_deepslate","minecraft:infested_mossy_stone_bricks","minecraft:infested_stone","minecraft:infested_stone_bricks","minecraft:iron_bars","minecraft:iron_block","minecraft:iron_door","minecraft:iron_ore","minecraft:iron_trapdoor","minecraft:jack_o_lantern","minecraft:jigsaw","minecraft:jukebox","minecraft:jungle_door","minecraft:jungle_fence","minecraft:jungle_fence_gate","minecraft:jungle_leaves","minecraft:jungle_log","minecraft:jungle_planks","minecraft:jungle_pressure_plate","minecraft:jungle_sapling","minecraft:jungle_sign","minecraft:jungle_slab","minecraft:jungle_stairs","minecraft:jungle_trapdoor","minecraft:jungle_wall_sign","minecraft:jungle_wood","minecraft:kelp","minecraft:kelp_plant","minecraft:ladder","minecraft:lantern","minecraft:lapis_block","minecraft:lapis_ore","minecraft:large_amethyst_bud","minecraft:large_fern","minecraft:lava_cauldron","minecraft:lectern","minecraft:lever","minecraft:light","minecraft:light_blue_banner","minecraft:light_blue_bed","minecraft:light_blue_candle_cake","minecraft:light_blue_carpet","minecraft:light_blue_concrete","minecraft:light_blue_concrete_powder","minecraft:light_blue_glazed_terracotta","minecraft:light_blue_shulker_box","minecraft:light_blue_stained_glass","minecraft:light_blue_stained_glass_pane","minecraft:light_blue_terracotta","minecraft:light_blue_wall_banner","minecraft:light_blue_wool","minecraft:light_gray_banner","minecraft:light_gray_bed","minecraft:light_gray_candle_cake","minecraft:light_gray_carpet","minecraft:light_gray_concrete","minecraft:light_gray_concrete_powder","minecraft:light_gray_glazed_terracotta","minecraft:light_gray_shulker_box","minecraft:light_gray_stained_glass","minecraft:light_gray_stained_glass_pane","minecraft:light_gray_terracotta","minecraft:light_gray_wall_banner","minecraft:light_gray_wool","minecraft:light_weighted_pressure_plate","minecraft:lightning_rod","minecraft:lilac","minecraft:lily_of_the_valley","minecraft:lily_pad","minecraft:lime_banner","minecraft:lime_bed","minecraft:lime_candle_cake","minecraft:lime_carpet","minecraft:lime_concrete","minecraft:lime_concrete_powder","minecraft:lime_glazed_terracotta","minecraft:lime_shulker_box","minecraft:lime_stained_glass","minecraft:lime_stained_glass_pane","minecraft:lime_terracotta","minecraft:lime_wall_banner","minecraft:lime_wool","minecraft:lodestone","minecraft:loom","minecraft:magenta_banner","minecraft:magenta_bed","minecraft:magenta_candle_cake","minecraft:magenta_carpet","minecraft:magenta_concrete","minecraft:magenta_concrete_powder","minecraft:magenta_glazed_terracotta","minecraft:magenta_shulker_box","minecraft:magenta_stained_glass","minecraft:magenta_stained_glass_pane","minecraft:magenta_terracotta","minecraft:magenta_wall_banner","minecraft:magenta_wool","minecraft:magma_block","minecraft:medium_amethyst_bud","minecraft:melon","minecraft:melon_stem","minecraft:moss_block","minecraft:moss_carpet","minecraft:mossy_cobblestone","minecraft:mossy_cobblestone_slab","minecraft:mossy_cobblestone_stairs","minecraft:mossy_cobblestone_wall","minecraft:mossy_stone_brick_slab","minecraft:mossy_stone_brick_stairs","minecraft:mossy_stone_brick_wall","minecraft:mossy_stone_bricks","minecraft:moving_piston","minecraft:mushroom_stem","minecraft:mycelium","minecraft:nether_brick_fence","minecraft:nether_brick_slab","minecraft:nether_brick_stairs","minecraft:nether_brick_wall","minecraft:nether_bricks","minecraft:nether_gold_ore","minecraft:nether_portal","minecraft:nether_quartz_ore","minecraft:nether_sprouts","minecraft:nether_wart","minecraft:nether_wart_block","minecraft:netherite_block","minecraft:netherrack","minecraft:note_block","minecraft:oak_door","minecraft:oak_fence","minecraft:oak_fence_gate","minecraft:oak_leaves","minecraft:oak_log","minecraft:oak_planks","minecraft:oak_sapling","minecraft:oak_sign","minecraft:oak_slab","minecraft:oak_stairs","minecraft:oak_trapdoor","minecraft:oak_wall_sign","minecraft:oak_wood","minecraft:observer","minecraft:obsidian","minecraft:orange_banner","minecraft:orange_bed","minecraft:orange_candle_cake","minecraft:orange_carpet","minecraft:orange_concrete","minecraft:orange_concrete_powder","minecraft:orange_glazed_terracotta","minecraft:orange_shulker_box","minecraft:orange_stained_glass","minecraft:orange_stained_glass_pane","minecraft:orange_terracotta","minecraft:orange_tulip","minecraft:orange_wall_banner","minecraft:orange_wool","minecraft:oxeye_daisy","minecraft:oxidized_copper","minecraft:oxidized_cut_copper","minecraft:oxidized_cut_copper_slab","minecraft:oxidized_cut_copper_stairs","minecraft:packed_ice","minecraft:peony","minecraft:petrified_oak_slab","minecraft:pink_banner","minecraft:pink_bed","minecraft:pink_candle_cake","minecraft:pink_carpet","minecraft:pink_concrete","minecraft:pink_concrete_powder","minecraft:pink_glazed_terracotta","minecraft:pink_shulker_box","minecraft:pink_stained_glass","minecraft:pink_stained_glass_pane","minecraft:pink_terracotta","minecraft:pink_tulip","minecraft:pink_wall_banner","minecraft:pink_wool","minecraft:piston","minecraft:piston_head","minecraft:player_head","minecraft:player_wall_head","minecraft:podzol","minecraft:polished_andesite","minecraft:polished_andesite_slab","minecraft:polished_andesite_stairs","minecraft:polished_basalt","minecraft:polished_blackstone","minecraft:polished_blackstone_brick_slab","minecraft:polished_blackstone_brick_stairs","minecraft:polished_blackstone_brick_wall","minecraft:polished_blackstone_bricks","minecraft:polished_blackstone_slab","minecraft:polished_blackstone_stairs","minecraft:polished_blackstone_wall","minecraft:polished_deepslate","minecraft:polished_deepslate_slab","minecraft:polished_deepslate_stairs","minecraft:polished_deepslate_wall","minecraft:polished_diorite","minecraft:polished_diorite_slab","minecraft:polished_diorite_stairs","minecraft:polished_granite","minecraft:polished_granite_slab","minecraft:polished_granite_stairs","minecraft:poppy","minecraft:potatoes","minecraft:potted_acacia_sapling","minecraft:potted_allium","minecraft:potted_azalea_bush","minecraft:potted_azure_bluet","minecraft:potted_bamboo","minecraft:potted_birch_sapling","minecraft:potted_blue_orchid","minecraft:potted_brown_mushroom","minecraft:potted_cactus","minecraft:potted_crimson_fungus","minecraft:potted_crimson_roots","minecraft:potted_dandelion","minecraft:potted_dark_oak_sapling","minecraft:potted_dead_bush","minecraft:potted_fern","minecraft:potted_flowering_azalea_bush","minecraft:potted_jungle_sapling","minecraft:potted_lily_of_the_valley","minecraft:potted_oak_sapling","minecraft:potted_orange_tulip","minecraft:potted_oxeye_daisy","minecraft:potted_pink_tulip","minecraft:potted_poppy","minecraft:potted_red_mushroom","minecraft:potted_red_tulip","minecraft:potted_spruce_sapling","minecraft:potted_warped_fungus","minecraft:potted_warped_roots","minecraft:potted_white_tulip","minecraft:potted_wither_rose","minecraft:powder_snow","minecraft:powder_snow_cauldron","minecraft:powered_rail","minecraft:prismarine","minecraft:prismarine_brick_slab","minecraft:prismarine_brick_stairs","minecraft:prismarine_bricks","minecraft:prismarine_slab","minecraft:prismarine_stairs","minecraft:prismarine_wall","minecraft:pumpkin","minecraft:purple_bed","minecraft:purple_candle_cake","minecraft:purple_carpet","minecraft:purple_concrete","minecraft:purple_concrete_powder","minecraft:purple_glazed_terracotta","minecraft:purple_shulker_box","minecraft:purple_stained_glass","minecraft:purple_stained_glass_pane","minecraft:purple_terracotta","minecraft:purple_wall_banner","minecraft:purple_wool","minecraft:purpur_block","minecraft:purpur_pillar","minecraft:purpur_slab","minecraft:purpur_stairs","minecraft:quartz_block","minecraft:quartz_bricks","minecraft:quartz_pillar","minecraft:quartz_slab","minecraft:quartz_stairs","minecraft:rail","minecraft:raw_copper_block","minecraft:raw_gold_block","minecraft:raw_iron_block","minecraft:red_banner","minecraft:red_bed","minecraft:red_candle_cake","minecraft:red_carpet","minecraft:red_concrete","minecraft:red_concrete_powder","minecraft:red_glazed_terracotta","minecraft:red_mushroom","minecraft:red_mushroom_block","minecraft:red_nether_brick_slab","minecraft:red_nether_brick_stairs","minecraft:red_nether_brick_wall","minecraft:red_nether_bricks","minecraft:red_sand","minecraft:red_sandstone","minecraft:red_sandstone_slab","minecraft:red_sandstone_stairs","minecraft:red_sandstone_wall","minecraft:red_shulker_box","minecraft:red_stained_glass","minecraft:red_stained_glass_pane","minecraft:red_terracotta","minecraft:red_tulip","minecraft:red_wall_banner","minecraft:red_wool","minecraft:redstone_block","minecraft:redstone_lamp","minecraft:redstone_ore","minecraft:repeating_command_block","minecraft:respawn_anchor","minecraft:rooted_dirt","minecraft:rose_bush","minecraft:sand","minecraft:sandstone","minecraft:sandstone_slab","minecraft:sandstone_stairs","minecraft:sandstone_wall","minecraft:scaffolding","minecraft:sculk_sensor","minecraft:sculk","minecraft:sea_lantern","minecraft:seagrass","minecraft:shroomlight","minecraft:shulker_box","minecraft:skeleton_skull","minecraft:skeleton_wall_skull","minecraft:slime_block","minecraft:small_amethyst_bud","minecraft:smithing_table","minecraft:smoker","minecraft:smooth_basalt","minecraft:smooth_quartz","minecraft:smooth_quartz_slab","minecraft:smooth_quartz_stairs","minecraft:smooth_red_sandstone","minecraft:smooth_red_sandstone_slab","minecraft:smooth_red_sandstone_stairs","minecraft:smooth_sandstone","minecraft:smooth_sandstone_slab","minecraft:smooth_sandstone_stairs","minecraft:smooth_stone","minecraft:smooth_stone_slab","minecraft:snow_block","minecraft:soul_campfire","minecraft:soul_fire","minecraft:soul_lantern","minecraft:soul_sand","minecraft:soul_soil","minecraft:spawner","minecraft:sponge","minecraft:spore_blossom","minecraft:spruce_door","minecraft:spruce_fence","minecraft:spruce_fence_gate","minecraft:spruce_leaves","minecraft:spruce_log","minecraft:spruce_planks","minecraft:spruce_slab","minecraft:spruce_stairs","minecraft:spruce_trapdoor","minecraft:spruce_wall_sign","minecraft:spruce_wood","minecraft:sticky_piston","minecraft:stone","minecraft:stone_brick_slab","minecraft:stone_brick_stairs","minecraft:stone_brick_wall","minecraft:stone_bricks","minecraft:stone_slab","minecraft:stone_stairs","minecraft:stonecutter","minecraft:stripped_acacia_log","minecraft:stripped_acacia_wood","minecraft:stripped_birch_log","minecraft:stripped_birch_wood","minecraft:stripped_crimson_hyphae","minecraft:stripped_crimson_stem","minecraft:stripped_dark_oak_log","minecraft:stripped_dark_oak_wood","minecraft:stripped_jungle_log","minecraft:stripped_jungle_wood","minecraft:stripped_oak_log","minecraft:stripped_oak_wood","minecraft:stripped_spruce_log","minecraft:stripped_spruce_wood","minecraft:stripped_warped_hyphae","minecraft:stripped_warped_stem","minecraft:sweet_berry_bush","minecraft:tall_grass","minecraft:tall_seagrass","minecraft:target","minecraft:terracotta","minecraft:tinted_glass","minecraft:tnt","minecraft:trapped_chest","minecraft:tripwire","minecraft:tripwire_hook","minecraft:tube_coral","minecraft:tube_coral_block","minecraft:tube_coral_fan","minecraft:tube_coral_wall_fan","minecraft:tuff","minecraft:turtle_egg","minecraft:twisting_vines_plant","minecraft:warped_door","minecraft:warped_fence","minecraft:warped_fence_gate","minecraft:warped_hyphae","minecraft:warped_nylium","minecraft:warped_planks","minecraft:warped_slab","minecraft:warped_stairs","minecraft:warped_trapdoor","minecraft:warped_wall_sign","minecraft:warped_wart_block","minecraft:water_cauldron","minecraft:waxed_copper_block","minecraft:waxed_cut_copper","minecraft:waxed_cut_copper_slab","minecraft:waxed_cut_copper_stairs","minecraft:waxed_exposed_copper","minecraft:waxed_exposed_cut_copper","minecraft:waxed_exposed_cut_copper_slab","minecraft:waxed_exposed_cut_copper_stairs","minecraft:waxed_oxidized_copper","minecraft:waxed_oxidized_cut_copper","minecraft:waxed_oxidized_cut_copper_slab","minecraft:waxed_oxidized_cut_copper_stairs","minecraft:waxed_weathered_copper","minecraft:waxed_weathered_cut_copper","minecraft:waxed_weathered_cut_copper_slab","minecraft:waxed_weathered_cut_copper_stairs","minecraft:weathered_copper","minecraft:weathered_cut_copper","minecraft:weathered_cut_copper_slab","minecraft:weathered_cut_copper_stairs","minecraft:weeping_vines_plant","minecraft:wet_sponge","minecraft:wheat","minecraft:white_banner","minecraft:white_bed","minecraft:white_candle_cake","minecraft:white_carpet","minecraft:white_concrete","minecraft:white_concrete_powder","minecraft:white_glazed_terracotta","minecraft:white_shulker_box","minecraft:white_stained_glass","minecraft:white_stained_glass_pane","minecraft:white_terracotta","minecraft:white_tulip","minecraft:white_wall_banner","minecraft:white_wool","minecraft:wither_rose","minecraft:wither_skeleton_skull","minecraft:wither_skeleton_wall_skull","minecraft:yellow_banner","minecraft:yellow_bed","minecraft:void_air","minecraft:yellow_candle_cake","minecraft:yellow_carpet","minecraft:yellow_concrete","minecraft:yellow_concrete_powder","minecraft:yellow_glazed_terracotta","minecraft:yellow_shulker_box","minecraft:yellow_stained_glass","minecraft:yellow_stained_glass_pane","minecraft:yellow_terracotta","minecraft:yellow_wool"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_unbreakable.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_unbreakable.json new file mode 100644 index 0000000..c3d3091 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/all_but_unbreakable.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:acacia_door","minecraft:void_air","minecraft:air","minecraft:acacia_fence","minecraft:acacia_fence_gate","minecraft:acacia_leaves","minecraft:acacia_log","minecraft:acacia_planks","minecraft:acacia_sapling","minecraft:acacia_sign","minecraft:acacia_slab","minecraft:acacia_stairs","minecraft:acacia_trapdoor","minecraft:acacia_wall_sign","minecraft:acacia_wood","minecraft:activator_rail","minecraft:allium","minecraft:amethyst_block","minecraft:amethyst_cluster","minecraft:ancient_debris","minecraft:andesite","minecraft:andesite_slab","minecraft:andesite_stairs","minecraft:andesite_wall","minecraft:anvil","minecraft:attached_melon_stem","minecraft:attached_pumpkin_stem","minecraft:azalea","minecraft:azalea_leaves","minecraft:azure_bluet","minecraft:bamboo","minecraft:bamboo_sapling","minecraft:barrel","minecraft:basalt","minecraft:beacon","minecraft:bee_nest","minecraft:beehive","minecraft:birch_door","minecraft:birch_fence","minecraft:birch_fence_gate","minecraft:birch_leaves","minecraft:birch_log","minecraft:birch_planks","minecraft:birch_pressure_plate","minecraft:birch_sapling","minecraft:birch_sign","minecraft:birch_slab","minecraft:birch_stairs","minecraft:birch_trapdoor","minecraft:birch_wall_sign","minecraft:birch_wood","minecraft:black_banner","minecraft:black_bed","minecraft:black_candle_cake","minecraft:black_carpet","minecraft:black_concrete","minecraft:black_concrete_powder","minecraft:black_glazed_terracotta","minecraft:black_shulker_box","minecraft:black_stained_glass","minecraft:black_stained_glass_pane","minecraft:black_terracotta","minecraft:black_wall_banner","minecraft:black_wool","minecraft:blackstone","minecraft:blackstone_slab","minecraft:blackstone_stairs","minecraft:blackstone_wall","minecraft:blast_furnace","minecraft:blue_banner","minecraft:blue_bed","minecraft:blue_candle_cake","minecraft:blue_carpet","minecraft:blue_concrete","minecraft:blue_concrete_powder","minecraft:blue_glazed_terracotta","minecraft:blue_ice","minecraft:blue_orchid","minecraft:blue_shulker_box","minecraft:blue_stained_glass","minecraft:blue_stained_glass_pane","minecraft:blue_terracotta","minecraft:blue_wall_banner","minecraft:blue_wool","minecraft:bone_block","minecraft:bookshelf","minecraft:brain_coral","minecraft:brain_coral_block","minecraft:brain_coral_fan","minecraft:brain_coral_wall_fan","minecraft:brewing_stand","minecraft:brick_slab","minecraft:brick_stairs","minecraft:brick_wall","minecraft:bricks","minecraft:brown_banner","minecraft:brown_bed","minecraft:brown_candle_cake","minecraft:brown_carpet","minecraft:brown_concrete","minecraft:brown_concrete_powder","minecraft:brown_glazed_terracotta","minecraft:brown_mushroom","minecraft:brown_mushroom_block","minecraft:brown_shulker_box","minecraft:brown_stained_glass","minecraft:brown_stained_glass_pane","minecraft:brown_terracotta","minecraft:brown_wall_banner","minecraft:brown_wool","minecraft:bubble_column","minecraft:bubble_coral","minecraft:bubble_coral_block","minecraft:bubble_coral_fan","minecraft:bubble_coral_wall_fan","minecraft:budding_amethyst","minecraft:cactus","minecraft:cake","minecraft:calcite","minecraft:campfire","minecraft:candle_cake","minecraft:carrots","minecraft:cartography_table","minecraft:carved_pumpkin","minecraft:cauldron","minecraft:chain","minecraft:chain_command_block","minecraft:chest","minecraft:chipped_anvil","minecraft:chiseled_deepslate","minecraft:chiseled_nether_bricks","minecraft:chiseled_polished_blackstone","minecraft:chiseled_quartz_block","minecraft:chiseled_red_sandstone","minecraft:chiseled_sandstone","minecraft:chiseled_stone_bricks","minecraft:chorus_flower","minecraft:chorus_plant","minecraft:clay","minecraft:coal_block","minecraft:coal_ore","minecraft:coarse_dirt","minecraft:cobbled_deepslate","minecraft:cobbled_deepslate_slab","minecraft:cobbled_deepslate_stairs","minecraft:cobbled_deepslate_wall","minecraft:cobblestone","minecraft:cobblestone_slab","minecraft:cobblestone_stairs","minecraft:cobblestone_wall","minecraft:cocoa","minecraft:command_block","minecraft:comparator","minecraft:composter","minecraft:conduit","minecraft:copper_block","minecraft:copper_ore","minecraft:cracked_deepslate_bricks","minecraft:cracked_deepslate_tiles","minecraft:cracked_nether_bricks","minecraft:cracked_polished_blackstone_bricks","minecraft:cracked_stone_bricks","minecraft:crafting_table","minecraft:creeper_head","minecraft:creeper_wall_head","minecraft:crimson_door","minecraft:crimson_fence","minecraft:crimson_fence_gate","minecraft:crimson_fungus","minecraft:crimson_hyphae","minecraft:crimson_nylium","minecraft:crimson_planks","minecraft:crimson_pressure_plate","minecraft:crimson_roots","minecraft:crimson_sign","minecraft:crimson_slab","minecraft:crimson_stairs","minecraft:crimson_stem","minecraft:crimson_trapdoor","minecraft:crimson_wall_sign","minecraft:cut_copper","minecraft:cut_copper_slab","minecraft:cut_copper_stairs","minecraft:cut_red_sandstone","minecraft:cut_red_sandstone_slab","minecraft:cut_sandstone","minecraft:cut_sandstone_slab","minecraft:cyan_banner","minecraft:cyan_bed","minecraft:cyan_candle_cake","minecraft:cyan_carpet","minecraft:cyan_concrete","minecraft:cyan_concrete_powder","minecraft:cyan_glazed_terracotta","minecraft:cyan_shulker_box","minecraft:cyan_stained_glass","minecraft:cyan_stained_glass_pane","minecraft:cyan_terracotta","minecraft:cyan_wall_banner","minecraft:cyan_wool","minecraft:damaged_anvil","minecraft:dandelion","minecraft:dark_oak_door","minecraft:dark_oak_fence","minecraft:dark_oak_fence_gate","minecraft:dark_oak_leaves","minecraft:dark_oak_log","minecraft:dark_oak_planks","minecraft:dark_oak_pressure_plate","minecraft:dark_oak_sapling","minecraft:dark_oak_sign","minecraft:dark_oak_slab","minecraft:dark_oak_stairs","minecraft:dark_oak_trapdoor","minecraft:dark_oak_wall_sign","minecraft:dark_oak_wood","minecraft:dark_prismarine","minecraft:dark_prismarine_slab","minecraft:dark_prismarine_stairs","minecraft:daylight_detector","minecraft:dead_brain_coral","minecraft:dead_brain_coral_block","minecraft:dead_brain_coral_fan","minecraft:dead_brain_coral_wall_fan","minecraft:dead_bubble_coral","minecraft:dead_bubble_coral_block","minecraft:dead_bubble_coral_fan","minecraft:dead_fire_coral_block","minecraft:dead_fire_coral_fan","minecraft:dead_fire_coral_wall_fan","minecraft:dead_horn_coral","minecraft:dead_horn_coral_block","minecraft:dead_horn_coral_fan","minecraft:dead_horn_coral_wall_fan","minecraft:dead_tube_coral","minecraft:dead_tube_coral_block","minecraft:dead_tube_coral_fan","minecraft:dead_tube_coral_wall_fan","minecraft:deepslate","minecraft:deepslate_brick_slab","minecraft:deepslate_brick_stairs","minecraft:deepslate_brick_wall","minecraft:deepslate_bricks","minecraft:deepslate_coal_ore","minecraft:deepslate_copper_ore","minecraft:deepslate_diamond_ore","minecraft:deepslate_emerald_ore","minecraft:deepslate_gold_ore","minecraft:deepslate_iron_ore","minecraft:deepslate_lapis_ore","minecraft:deepslate_redstone_ore","minecraft:deepslate_tile_slab","minecraft:deepslate_tile_stairs","minecraft:deepslate_tile_wall","minecraft:deepslate_tiles","minecraft:detector_rail","minecraft:diamond_block","minecraft:diamond_ore","minecraft:diorite","minecraft:diorite_slab","minecraft:diorite_stairs","minecraft:diorite_wall","minecraft:dirt","minecraft:dirt_path","minecraft:dispenser","minecraft:dragon_egg","minecraft:dragon_head","minecraft:dragon_wall_head","minecraft:dried_kelp_block","minecraft:dripstone_block","minecraft:dropper","minecraft:emerald_block","minecraft:emerald_ore","minecraft:enchanting_table","minecraft:end_gateway","minecraft:end_rod","minecraft:end_stone","minecraft:end_stone_brick_slab","minecraft:end_stone_brick_stairs","minecraft:end_stone_brick_wall","minecraft:end_stone_bricks","minecraft:ender_chest","minecraft:exposed_copper","minecraft:exposed_cut_copper","minecraft:exposed_cut_copper_slab","minecraft:exposed_cut_copper_stairs","minecraft:farmland","minecraft:fire_coral","minecraft:fire_coral_block","minecraft:fire_coral_fan","minecraft:fire_coral_wall_fan","minecraft:fletching_table","minecraft:flowering_azalea","minecraft:flowering_azalea_leaves","minecraft:frosted_ice","minecraft:furnace","minecraft:gilded_blackstone","minecraft:glass","minecraft:glass_pane","minecraft:glowstone","minecraft:gold_block","minecraft:gold_ore","minecraft:granite","minecraft:granite_slab","minecraft:granite_stairs","minecraft:granite_wall","minecraft:grass_block","minecraft:gravel","minecraft:gray_banner","minecraft:gray_bed","minecraft:gray_candle_cake","minecraft:gray_carpet","minecraft:gray_concrete","minecraft:gray_concrete_powder","minecraft:gray_glazed_terracotta","minecraft:gray_shulker_box","minecraft:gray_stained_glass","minecraft:gray_stained_glass_pane","minecraft:gray_terracotta","minecraft:gray_wall_banner","minecraft:gray_wool","minecraft:green_banner","minecraft:green_bed","minecraft:green_candle_cake","minecraft:green_carpet","minecraft:green_concrete","minecraft:green_concrete_powder","minecraft:green_glazed_terracotta","minecraft:green_shulker_box","minecraft:green_stained_glass","minecraft:green_stained_glass_pane","minecraft:green_terracotta","minecraft:green_wall_banner","minecraft:green_wool","minecraft:grindstone","minecraft:hanging_roots","minecraft:hay_block","minecraft:heavy_weighted_pressure_plate","minecraft:honey_block","minecraft:honeycomb_block","minecraft:hopper","minecraft:horn_coral","minecraft:horn_coral_block","minecraft:horn_coral_fan","minecraft:horn_coral_wall_fan","minecraft:ice","minecraft:infested_chiseled_stone_bricks","minecraft:infested_cobblestone","minecraft:infested_cracked_stone_bricks","minecraft:infested_deepslate","minecraft:infested_mossy_stone_bricks","minecraft:infested_stone","minecraft:infested_stone_bricks","minecraft:iron_bars","minecraft:iron_block","minecraft:iron_door","minecraft:iron_ore","minecraft:iron_trapdoor","minecraft:jack_o_lantern","minecraft:jigsaw","minecraft:jukebox","minecraft:jungle_door","minecraft:jungle_fence","minecraft:jungle_fence_gate","minecraft:jungle_leaves","minecraft:jungle_log","minecraft:jungle_planks","minecraft:jungle_pressure_plate","minecraft:jungle_sapling","minecraft:jungle_sign","minecraft:jungle_slab","minecraft:jungle_stairs","minecraft:jungle_trapdoor","minecraft:jungle_wall_sign","minecraft:jungle_wood","minecraft:kelp","minecraft:kelp_plant","minecraft:ladder","minecraft:lantern","minecraft:lapis_block","minecraft:lapis_ore","minecraft:large_amethyst_bud","minecraft:large_fern","minecraft:lava_cauldron","minecraft:lectern","minecraft:lever","minecraft:light","minecraft:light_blue_banner","minecraft:light_blue_bed","minecraft:light_blue_candle_cake","minecraft:light_blue_carpet","minecraft:light_blue_concrete","minecraft:light_blue_concrete_powder","minecraft:light_blue_glazed_terracotta","minecraft:light_blue_shulker_box","minecraft:light_blue_stained_glass","minecraft:light_blue_stained_glass_pane","minecraft:light_blue_terracotta","minecraft:light_blue_wall_banner","minecraft:light_blue_wool","minecraft:light_gray_banner","minecraft:light_gray_bed","minecraft:light_gray_candle_cake","minecraft:light_gray_carpet","minecraft:light_gray_concrete","minecraft:light_gray_concrete_powder","minecraft:light_gray_glazed_terracotta","minecraft:light_gray_shulker_box","minecraft:light_gray_stained_glass","minecraft:light_gray_stained_glass_pane","minecraft:light_gray_terracotta","minecraft:light_gray_wall_banner","minecraft:light_gray_wool","minecraft:light_weighted_pressure_plate","minecraft:lightning_rod","minecraft:lilac","minecraft:lily_of_the_valley","minecraft:lily_pad","minecraft:lime_banner","minecraft:lime_bed","minecraft:lime_candle_cake","minecraft:lime_carpet","minecraft:lime_concrete","minecraft:lime_concrete_powder","minecraft:lime_glazed_terracotta","minecraft:lime_shulker_box","minecraft:lime_stained_glass","minecraft:lime_stained_glass_pane","minecraft:lime_terracotta","minecraft:lime_wall_banner","minecraft:lime_wool","minecraft:lodestone","minecraft:loom","minecraft:magenta_banner","minecraft:magenta_bed","minecraft:magenta_candle_cake","minecraft:magenta_carpet","minecraft:magenta_concrete","minecraft:magenta_concrete_powder","minecraft:magenta_glazed_terracotta","minecraft:magenta_shulker_box","minecraft:magenta_stained_glass","minecraft:magenta_stained_glass_pane","minecraft:magenta_terracotta","minecraft:magenta_wall_banner","minecraft:magenta_wool","minecraft:magma_block","minecraft:medium_amethyst_bud","minecraft:melon","minecraft:melon_stem","minecraft:moss_block","minecraft:moss_carpet","minecraft:mossy_cobblestone","minecraft:mossy_cobblestone_slab","minecraft:mossy_cobblestone_stairs","minecraft:mossy_cobblestone_wall","minecraft:mossy_stone_brick_slab","minecraft:mossy_stone_brick_stairs","minecraft:mossy_stone_brick_wall","minecraft:mossy_stone_bricks","minecraft:moving_piston","minecraft:mushroom_stem","minecraft:mycelium","minecraft:nether_brick_fence","minecraft:nether_brick_slab","minecraft:nether_brick_stairs","minecraft:nether_brick_wall","minecraft:nether_bricks","minecraft:nether_gold_ore","minecraft:nether_quartz_ore","minecraft:nether_sprouts","minecraft:nether_wart","minecraft:nether_wart_block","minecraft:netherite_block","minecraft:netherrack","minecraft:note_block","minecraft:oak_door","minecraft:oak_fence","minecraft:oak_fence_gate","minecraft:oak_leaves","minecraft:oak_log","minecraft:oak_planks","minecraft:oak_sapling","minecraft:oak_sign","minecraft:oak_slab","minecraft:oak_stairs","minecraft:oak_trapdoor","minecraft:oak_wall_sign","minecraft:oak_wood","minecraft:observer","minecraft:orange_banner","minecraft:orange_bed","minecraft:orange_candle_cake","minecraft:orange_carpet","minecraft:orange_concrete","minecraft:orange_concrete_powder","minecraft:orange_glazed_terracotta","minecraft:orange_shulker_box","minecraft:orange_stained_glass","minecraft:orange_stained_glass_pane","minecraft:orange_terracotta","minecraft:orange_tulip","minecraft:orange_wall_banner","minecraft:orange_wool","minecraft:oxeye_daisy","minecraft:oxidized_copper","minecraft:oxidized_cut_copper","minecraft:oxidized_cut_copper_slab","minecraft:oxidized_cut_copper_stairs","minecraft:packed_ice","minecraft:peony","minecraft:petrified_oak_slab","minecraft:pink_banner","minecraft:pink_bed","minecraft:pink_candle_cake","minecraft:pink_carpet","minecraft:pink_concrete","minecraft:pink_concrete_powder","minecraft:pink_glazed_terracotta","minecraft:pink_shulker_box","minecraft:pink_stained_glass","minecraft:pink_stained_glass_pane","minecraft:pink_terracotta","minecraft:pink_tulip","minecraft:pink_wall_banner","minecraft:pink_wool","minecraft:piston","minecraft:piston_head","minecraft:player_head","minecraft:player_wall_head","minecraft:podzol","minecraft:polished_andesite","minecraft:polished_andesite_slab","minecraft:polished_andesite_stairs","minecraft:polished_basalt","minecraft:polished_blackstone","minecraft:polished_blackstone_brick_slab","minecraft:polished_blackstone_brick_stairs","minecraft:polished_blackstone_brick_wall","minecraft:polished_blackstone_bricks","minecraft:polished_blackstone_slab","minecraft:polished_blackstone_stairs","minecraft:polished_blackstone_wall","minecraft:polished_deepslate","minecraft:polished_deepslate_slab","minecraft:polished_deepslate_stairs","minecraft:polished_deepslate_wall","minecraft:polished_diorite","minecraft:polished_diorite_slab","minecraft:polished_diorite_stairs","minecraft:polished_granite","minecraft:polished_granite_slab","minecraft:polished_granite_stairs","minecraft:poppy","minecraft:potatoes","minecraft:potted_acacia_sapling","minecraft:potted_allium","minecraft:potted_azalea_bush","minecraft:potted_azure_bluet","minecraft:potted_bamboo","minecraft:potted_birch_sapling","minecraft:potted_blue_orchid","minecraft:potted_brown_mushroom","minecraft:potted_cactus","minecraft:potted_crimson_fungus","minecraft:potted_crimson_roots","minecraft:potted_dandelion","minecraft:potted_dark_oak_sapling","minecraft:potted_dead_bush","minecraft:potted_fern","minecraft:potted_flowering_azalea_bush","minecraft:potted_jungle_sapling","minecraft:potted_lily_of_the_valley","minecraft:potted_oak_sapling","minecraft:potted_orange_tulip","minecraft:potted_oxeye_daisy","minecraft:potted_pink_tulip","minecraft:potted_poppy","minecraft:potted_red_mushroom","minecraft:potted_red_tulip","minecraft:potted_spruce_sapling","minecraft:potted_warped_fungus","minecraft:potted_warped_roots","minecraft:potted_white_tulip","minecraft:potted_wither_rose","minecraft:powder_snow","minecraft:powder_snow_cauldron","minecraft:powered_rail","minecraft:prismarine","minecraft:prismarine_brick_slab","minecraft:prismarine_brick_stairs","minecraft:prismarine_bricks","minecraft:prismarine_slab","minecraft:prismarine_stairs","minecraft:prismarine_wall","minecraft:pumpkin","minecraft:purple_bed","minecraft:purple_candle_cake","minecraft:purple_carpet","minecraft:purple_concrete","minecraft:purple_concrete_powder","minecraft:purple_glazed_terracotta","minecraft:purple_shulker_box","minecraft:purple_stained_glass","minecraft:purple_stained_glass_pane","minecraft:purple_terracotta","minecraft:purple_wall_banner","minecraft:purple_wool","minecraft:purpur_block","minecraft:purpur_pillar","minecraft:purpur_slab","minecraft:purpur_stairs","minecraft:quartz_block","minecraft:quartz_bricks","minecraft:quartz_pillar","minecraft:quartz_slab","minecraft:quartz_stairs","minecraft:rail","minecraft:raw_copper_block","minecraft:raw_gold_block","minecraft:raw_iron_block","minecraft:red_banner","minecraft:red_bed","minecraft:red_candle_cake","minecraft:red_carpet","minecraft:red_concrete","minecraft:red_concrete_powder","minecraft:red_glazed_terracotta","minecraft:red_mushroom","minecraft:red_mushroom_block","minecraft:red_nether_brick_slab","minecraft:red_nether_brick_stairs","minecraft:red_nether_brick_wall","minecraft:red_nether_bricks","minecraft:red_sand","minecraft:red_sandstone","minecraft:red_sandstone_slab","minecraft:red_sandstone_stairs","minecraft:red_sandstone_wall","minecraft:red_shulker_box","minecraft:red_stained_glass","minecraft:red_stained_glass_pane","minecraft:red_terracotta","minecraft:red_tulip","minecraft:red_wall_banner","minecraft:red_wool","minecraft:redstone_block","minecraft:redstone_lamp","minecraft:redstone_ore","minecraft:repeating_command_block","minecraft:respawn_anchor","minecraft:rooted_dirt","minecraft:rose_bush","minecraft:sand","minecraft:sandstone","minecraft:sandstone_slab","minecraft:sandstone_stairs","minecraft:sandstone_wall","minecraft:scaffolding","minecraft:sculk_sensor","minecraft:sculk","minecraft:sea_lantern","minecraft:seagrass","minecraft:shroomlight","minecraft:shulker_box","minecraft:skeleton_skull","minecraft:skeleton_wall_skull","minecraft:slime_block","minecraft:small_amethyst_bud","minecraft:smithing_table","minecraft:smoker","minecraft:smooth_basalt","minecraft:smooth_quartz","minecraft:smooth_quartz_slab","minecraft:smooth_quartz_stairs","minecraft:smooth_red_sandstone","minecraft:smooth_red_sandstone_slab","minecraft:smooth_red_sandstone_stairs","minecraft:smooth_sandstone","minecraft:smooth_sandstone_slab","minecraft:smooth_sandstone_stairs","minecraft:smooth_stone","minecraft:smooth_stone_slab","minecraft:snow_block","minecraft:soul_campfire","minecraft:soul_fire","minecraft:soul_lantern","minecraft:soul_sand","minecraft:soul_soil","minecraft:spawner","minecraft:sponge","minecraft:spore_blossom","minecraft:spruce_door","minecraft:spruce_fence","minecraft:spruce_fence_gate","minecraft:spruce_leaves","minecraft:spruce_log","minecraft:spruce_planks","minecraft:spruce_slab","minecraft:spruce_stairs","minecraft:spruce_trapdoor","minecraft:spruce_wall_sign","minecraft:spruce_wood","minecraft:sticky_piston","minecraft:stone","minecraft:stone_brick_slab","minecraft:stone_brick_stairs","minecraft:stone_brick_wall","minecraft:stone_bricks","minecraft:stone_slab","minecraft:stone_stairs","minecraft:stonecutter","minecraft:stripped_acacia_log","minecraft:stripped_acacia_wood","minecraft:stripped_birch_log","minecraft:stripped_birch_wood","minecraft:stripped_crimson_hyphae","minecraft:stripped_crimson_stem","minecraft:stripped_dark_oak_log","minecraft:stripped_dark_oak_wood","minecraft:stripped_jungle_log","minecraft:stripped_jungle_wood","minecraft:stripped_oak_log","minecraft:stripped_oak_wood","minecraft:stripped_spruce_log","minecraft:stripped_spruce_wood","minecraft:stripped_warped_hyphae","minecraft:stripped_warped_stem","minecraft:sweet_berry_bush","minecraft:tall_grass","minecraft:tall_seagrass","minecraft:target","minecraft:terracotta","minecraft:tinted_glass","minecraft:tnt","minecraft:trapped_chest","minecraft:tripwire","minecraft:tripwire_hook","minecraft:tube_coral","minecraft:tube_coral_block","minecraft:tube_coral_fan","minecraft:tube_coral_wall_fan","minecraft:tuff","minecraft:turtle_egg","minecraft:twisting_vines_plant","minecraft:warped_door","minecraft:warped_fence","minecraft:warped_fence_gate","minecraft:warped_hyphae","minecraft:warped_nylium","minecraft:warped_planks","minecraft:warped_slab","minecraft:warped_stairs","minecraft:warped_trapdoor","minecraft:warped_wall_sign","minecraft:warped_wart_block","minecraft:water_cauldron","minecraft:waxed_copper_block","minecraft:waxed_cut_copper","minecraft:waxed_cut_copper_slab","minecraft:waxed_cut_copper_stairs","minecraft:waxed_exposed_copper","minecraft:waxed_exposed_cut_copper","minecraft:waxed_exposed_cut_copper_slab","minecraft:waxed_exposed_cut_copper_stairs","minecraft:waxed_oxidized_copper","minecraft:waxed_oxidized_cut_copper","minecraft:waxed_oxidized_cut_copper_slab","minecraft:waxed_oxidized_cut_copper_stairs","minecraft:waxed_weathered_copper","minecraft:waxed_weathered_cut_copper","minecraft:waxed_weathered_cut_copper_slab","minecraft:waxed_weathered_cut_copper_stairs","minecraft:weathered_copper","minecraft:weathered_cut_copper","minecraft:weathered_cut_copper_slab","minecraft:weathered_cut_copper_stairs","minecraft:weeping_vines_plant","minecraft:wet_sponge","minecraft:wheat","minecraft:white_banner","minecraft:white_bed","minecraft:white_candle_cake","minecraft:white_carpet","minecraft:white_concrete","minecraft:white_concrete_powder","minecraft:white_glazed_terracotta","minecraft:white_shulker_box","minecraft:white_stained_glass","minecraft:white_stained_glass_pane","minecraft:white_terracotta","minecraft:white_tulip","minecraft:white_wall_banner","minecraft:white_wool","minecraft:wither_rose","minecraft:wither_skeleton_skull","minecraft:wither_skeleton_wall_skull","minecraft:yellow_banner","minecraft:yellow_bed","minecraft:void_air","minecraft:cave_air","minecraft:yellow_candle_cake","minecraft:yellow_carpet","minecraft:yellow_concrete","minecraft:yellow_concrete_powder","minecraft:yellow_glazed_terracotta","minecraft:yellow_shulker_box","minecraft:yellow_stained_glass","minecraft:yellow_stained_glass_pane","minecraft:yellow_terracotta","minecraft:yellow_wool"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/base_stone_overworld.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/base_stone_overworld.json new file mode 100644 index 0000000..320cd5e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/base_stone_overworld.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:tuff", + "minecraft:deepslate", + "minecraft:blackstone", + "minecraft:dripstone_block", + "minecraft:brown_concrete", + "minecraft:brown_concrete_powder", + "minecraft:moss_block", + "minecraft:green_concrete", + "minecraft:orange_concrete", + "minecraft:magma_block", + "minecraft:calcite", + "minecraft:basalt" + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/cheese.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/cheese.json new file mode 100644 index 0000000..36bcaa2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/cheese.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:lava","minecraft:cobweb"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/dangerous.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/dangerous.json new file mode 100644 index 0000000..f849d16 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/dangerous.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:lava","minecraft:fire"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/pillar_go_through.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/pillar_go_through.json new file mode 100644 index 0000000..751113b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/blocks/pillar_go_through.json @@ -0,0 +1,18 @@ +{"replace":false,"values":[ +"minecraft:tuff", +"minecraft:air", +"minecraft:cave_air", +"minecraft:deepslate", +"minecraft:ice", +"minecraft:gravel", +"minecraft:water", +"minecraft:lava", +"minecraft:bedrock", +"minecraft:packed_ice", +"minecraft:sculk", +"minecraft:sculk_sensor", +"minecraft:sculk_shrieker", +"minecraft:sculk_catalyst", +"minecraft:glow_lichen", +"minecraft:sculk_vein" +]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/damage_type/bypass.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/damage_type/bypass.json new file mode 100644 index 0000000..8677d2d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/damage_type/bypass.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:arrow" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/damage_type/player_attack.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/damage_type/player_attack.json new file mode 100644 index 0000000..9a8d3b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/damage_type/player_attack.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:player_attack" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/damage_type/projectile.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/damage_type/projectile.json new file mode 100644 index 0000000..884ecb7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/damage_type/projectile.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:fireworks", + "minecraft:fireball", + "minecraft:trident" + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/aggro.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/aggro.json new file mode 100644 index 0000000..22834c5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/aggro.json @@ -0,0 +1,19 @@ +{ + "values": [ + "minecraft:zombie", + "minecraft:skeleton", + "minecraft:spider", + "minecraft:pillager", + "minecraft:slime", + "minecraft:wither_skeleton", + "minecraft:vindicator", + "minecraft:iron_golem", + "minecraft:enderman", + "minecraft:zombified_piglin", + "minecraft:drowned", + "minecraft:evoker", + "minecraft:witch", + "minecraft:creeper", + "minecraft:ravager" + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/all_but_enderman.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/all_but_enderman.json new file mode 100644 index 0000000..25d30b3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/all_but_enderman.json @@ -0,0 +1,19 @@ +{ + "values": [ + "minecraft:drowned", + "minecraft:evoker", + "minecraft:iron_golem", + "minecraft:pillager", + "minecraft:iron_golem", + "minecraft:silverfish", + "minecraft:skeleton", + "minecraft:slime", + "minecraft:spider", + "minecraft:vindicator", + "minecraft:witch", + "minecraft:wither", + "minecraft:wither_skeleton", + "minecraft:zombie", + "minecraft:zombified_piglin" + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/all_living.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/all_living.json new file mode 100644 index 0000000..d84efc9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/all_living.json @@ -0,0 +1,78 @@ +{ + "values": [ + "minecraft:allay", + "minecraft:axolotl", + "minecraft:bat", + "minecraft:bee", + "minecraft:piglin", + "minecraft:cat", + "minecraft:cave_spider", + "minecraft:chicken", + "minecraft:cod", + "minecraft:cow", + "minecraft:creeper", + "minecraft:dolphin", + "minecraft:donkey", + "minecraft:drowned", + "minecraft:elder_guardian", + "minecraft:ender_dragon", + "minecraft:enderman", + "minecraft:endermite", + "minecraft:evoker", + "minecraft:fox", + "minecraft:frog", + "minecraft:ghast", + "minecraft:goat", + "minecraft:guardian", + "ravager", + "minecraft:hoglin", + "minecraft:horse", + "minecraft:husk", + "minecraft:iron_golem", + "minecraft:llama", + "minecraft:magma_cube", + "minecraft:mooshroom", + "minecraft:mule", + "minecraft:ocelot", + "minecraft:parrot", + "minecraft:phantom", + "minecraft:pig", + "minecraft:piglin", + "minecraft:piglin_brute", + "minecraft:pillager", + "minecraft:player", + "minecraft:polar_bear", + "minecraft:pufferfish", + "minecraft:rabbit", + "minecraft:iron_golem", + "minecraft:salmon", + "minecraft:sheep", + "minecraft:shulker", + "minecraft:silverfish", + "minecraft:skeleton", + "minecraft:slime", + "minecraft:spider", + "minecraft:squid", + "minecraft:stray", + "minecraft:strider", + "minecraft:sniffer", + "minecraft:camel", + "minecraft:tadpole", + "minecraft:turtle", + "minecraft:vex", + "minecraft:villager", + "minecraft:vindicator", + "minecraft:wandering_trader", + "minecraft:warden", + "minecraft:witch", + "minecraft:wither", + "minecraft:wither_skeleton", + "minecraft:wolf", + "minecraft:zoglin", + "minecraft:zombie", + "minecraft:zombie_horse", + "minecraft:zombified_piglin", + "minecraft:zombie_villager" + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/big.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/big.json new file mode 100644 index 0000000..cc0cb77 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/big.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:iron_golem", + "minecraft:ravager", + "minecraft:slime" + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/markers.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/markers.json new file mode 100644 index 0000000..8c3b4f0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/markers.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:marker", + "minecraft:item" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/mobs.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/mobs.json new file mode 100644 index 0000000..9e9a078 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/mobs.json @@ -0,0 +1,25 @@ +{ + "values": [ + "minecraft:marker", + "minecraft:area_effect_cloud", + "minecraft:item", + "minecraft:creeper", + "minecraft:drowned", + "minecraft:enderman", + "minecraft:evoker", + "minecraft:iron_golem", + "minecraft:pillager", + "minecraft:iron_golem", + "minecraft:silverfish", + "minecraft:skeleton", + "minecraft:slime", + "minecraft:spider", + "minecraft:vindicator", + "minecraft:witch", + "minecraft:wither", + "minecraft:wither_skeleton", + "minecraft:zombie", + "minecraft:creeper", + "minecraft:zombified_piglin" + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/projectiles.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/projectiles.json new file mode 100644 index 0000000..989ecba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/projectiles.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:firework_rocket", + "#arrows" + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/ranged.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/ranged.json new file mode 100644 index 0000000..e06af61 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/entity_types/ranged.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:skeleton", + "minecraft:pillager", + "piglin" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/chest.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/chest.json new file mode 100644 index 0000000..f7fa5e4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/chest.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:leather_chestplate","minecraft:chainmail_chestplate","minecraft:iron_chestplate","minecraft:golden_chestplate","minecraft:diamond_chestplate","minecraft:netherite_chestplate","minecraft:elytra"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/enchantable.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/enchantable.json new file mode 100644 index 0000000..1db40aa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/enchantable.json @@ -0,0 +1,16 @@ +{ + "values": [ + "#minecraft:swords", + "#minecraft:shovels", + "#minecraft:pickaxes", + "#minecraft:axes", + "#minecraft:hoes", + "minecraft:bow", + "minecraft:crossbow", + "minecraft:trident", + "minecraft:book", + "minecraft:brush", + "minecraft:shield", + "#minecraft:trimmable_armor" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/feet.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/feet.json new file mode 100644 index 0000000..080af34 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/feet.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:leather_boots","minecraft:chainmail_boots","minecraft:iron_boots","minecraft:golden_boots","minecraft:diamond_boots","minecraft:netherite_boots"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/head.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/head.json new file mode 100644 index 0000000..cabd797 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/head.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:leather_helmet","minecraft:chainmail_helmet","minecraft:iron_helmet","minecraft:golden_helmet","minecraft:diamond_helmet","minecraft:netherite_helmet","minecraft:turtle_helmet","player_head","zombie_head","wither_skeleton_skull","skeleton_skull","creeper_head","dragon_head"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/high_tier.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/high_tier.json new file mode 100644 index 0000000..394a36a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/high_tier.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:iron_chestplate","minecraft:diamond_chestplate","minecraft:netherite_chestplate"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/legs.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/legs.json new file mode 100644 index 0000000..f09e1a9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/legs.json @@ -0,0 +1 @@ +{"replace":false,"values":["minecraft:leather_leggings","minecraft:chainmail_leggings","minecraft:iron_leggings","minecraft:golden_leggings","minecraft:diamond_leggings","minecraft:netherite_leggings"]} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/sharpness.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/sharpness.json new file mode 100644 index 0000000..174256f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/sharpness.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:swords", + "#minecraft:axes", + "minecraft:trident", + "minecraft:brush", + "minecraft:shield", + "#minecraft:hoes" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/tools.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/tools.json new file mode 100644 index 0000000..7359973 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/tags/items/tools.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:shovels", + "#minecraft:pickaxes", + "#minecraft:axes", + "#minecraft:hoes" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/amethyst_caves.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/amethyst_caves.json new file mode 100644 index 0000000..bb31403 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/amethyst_caves.json @@ -0,0 +1,175 @@ +{ + "temperature": 0.8, + "downfall": 0.4, + "has_precipitation": false, + "effects": { + "sky_color": 11539919, + "fog_color": 11539919, + "water_color": 11539919, + "water_fog_color": 11539919, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.overworld.deep_dark", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "firework" + }, + "probability": 0.00025 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 5, + "minCount": 1, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/diamond", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "infinity_cave:amethyst_caves/calcite_rim", + "infinity_cave:amethyst_caves/hanging_crystals", + "infinity_cave:amethyst_caves/patch_floor", + "infinity_cave:amethyst_caves/patch_ceiling", + "infinity_cave:amethyst_caves/patches" + ], + [ + "minecraft:spring_water" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/deeprock_caverns.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/deeprock_caverns.json new file mode 100644 index 0000000..de1e42d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/deeprock_caverns.json @@ -0,0 +1,178 @@ +{ + "temperature": 1, + "downfall": 0, + "has_precipitation": false, + "effects": { + "sky_color": 3884377, + "fog_color": 3884377, + "water_color": 6199807, + "water_fog_color": 6199807, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.overworld.deep_dark", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "smoke" + }, + "probability": 0.001 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 80 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:wither_skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 15 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [ + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "infinity_cave:deeprock_caverns/patches", + "infinity_cave:deeprock_caverns/patches_2", + "infinity_cave:deeprock_caverns/patches_3", + "infinity_cave:deeprock_caverns/patch_ceiling", + "infinity_cave:deeprock_caverns/pillar", + "infinity_cave:deeprock_caverns/patch_floor", + "infinity_cave:deeprock_caverns/cobwebs" + ], + [ + "minecraft:spring_lava" + ], + [ + "infinity_cave:deeprock_caverns/replace", + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/frozen_caves.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/frozen_caves.json new file mode 100644 index 0000000..5e22459 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/frozen_caves.json @@ -0,0 +1,178 @@ +{ + "temperature": -1, + "downfall": 0, + "has_precipitation": false, + "effects": { + "sky_color": 2088434, + "fog_color": 2088434, + "water_color": 164594, + "water_fog_color": 164594, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.overworld.deep_dark", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "snowflake" + }, + "probability": 0.005 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 40 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:stray", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [ + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [ + ], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/lapis", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "infinity_cave:frozen_caves/ice_spike", + "infinity_cave:frozen_caves/delta", + "infinity_cave:frozen_caves/patch_floor", + "infinity_cave:frozen_caves/patch_ceiling", + "infinity_cave:frozen_caves/patches", + "infinity_cave:frozen_caves/patches_2" + ], + [ + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/limestone_grotto.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/limestone_grotto.json new file mode 100644 index 0000000..6e4b8bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/limestone_grotto.json @@ -0,0 +1,181 @@ +{ + "temperature": 1, + "downfall": 0, + "has_precipitation": false, + "effects": { + "sky_color": 12089650, + "fog_color": 12089650, + "water_color": 4898303, + "water_fog_color": 4898303, + "foliage_color": 12089650, + "grass_color": 12089650, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.nether.crimson_forest", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "ash" + }, + "probability": 0.0125 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:drowned", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/gold", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling" + ], + [ + "infinity_cave:limestone_grotto/patch_floor", + "infinity_cave:limestone_grotto/patch_ceiling", + "infinity_cave:limestone_grotto/patches_4", + "infinity_cave:limestone_grotto/patches", + "infinity_cave:limestone_grotto/patches_2", + "infinity_cave:limestone_grotto/patches_3", + "infinity_cave:limestone_grotto/delta", + "infinity_cave:limestone_grotto/hanging_roots", + "infinity_cave:limestone_grotto/pebbles" + ], + [ + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin", + "minecraft:warm_ocean_vegetation" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/molten_caves.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/molten_caves.json new file mode 100644 index 0000000..a8b2fa3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/molten_caves.json @@ -0,0 +1,175 @@ +{ + "temperature": 2, + "downfall": 0, + "has_precipitation": false, + "effects": { + "sky_color": 16738836, + "fog_color": 16738836, + "water_color": 10933759, + "water_fog_color": 10933759, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.nether.crimson_forest", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "small_flame" + }, + "probability": 0.0125 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:wither_skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 30 + }, + { + "type": "minecraft:zombified_piglin", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:blaze", + "maxCount": 4, + "minCount": 1, + "weight": 15 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/redstone", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "infinity_cave:molten_caves/patches", + "infinity_cave:molten_caves/patches_2", + "infinity_cave:molten_caves/basalt_pillar", + "infinity_cave:molten_caves/patch_ceiling", + "infinity_cave:molten_caves/delta", + "infinity_cave:molten_caves/patch_floor" + ], + [ + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/sulfide_caves.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/sulfide_caves.json new file mode 100644 index 0000000..cafa214 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/biome/sulfide_caves.json @@ -0,0 +1,189 @@ +{ + "temperature": 1, + "downfall": 0, + "has_precipitation": false, + "effects": { + "sky_color": 4259705, + "fog_color": 4259705, + "water_color": 3866396, + "water_fog_color": 3866396, + "foliage_color": 3866396, + "grass_color": 3866396, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "tick_delay": 6000, + "block_search_extent": 8, + "offset": 2 + }, + "music": { + "sound": "minecraft:music.nether.crimson_forest", + "min_delay": 12000, + "max_delay": 24000, + "replace_current_music": false + }, + "particle": { + "options": { + "type": "sneeze" + }, + "probability": 0.01 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 40 + }, + { + "type": "minecraft:cave_spider", + "maxCount": 4, + "minCount": 4, + "weight": 40 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 3, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:witch", + "maxCount": 4, + "minCount": 1, + "weight": 15 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "carvers": { + "air": [] + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning", + "minecraft:lake_lava_surface" + ], + [], + [], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [ + ], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/emerald", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "infinity_cave:sulfide_caves/replace", + "infinity_cave:sulfide_caves/patch_ceiling", + "infinity_cave:sulfide_caves/patch_ceiling2", + "infinity_cave:sulfide_caves/patches_2", + "infinity_cave:sulfide_caves/patches", + "infinity_cave:sulfide_caves/vegetation", + "infinity_cave:sulfide_caves/delta", + "infinity_cave:sulfide_caves/bush", + "infinity_cave:sulfide_caves/tree", + "infinity_cave:sulfide_caves/patch_floor" + ], + [ + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/canyon.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/canyon.json new file mode 100644 index 0000000..a2afcaa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/canyon.json @@ -0,0 +1,78 @@ +{ + "type": "minecraft:canyon", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:warped_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.01, + "replaceable": "#minecraft:overworld_carver_replaceables", + "shape": { + "distance_factor": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1, + "min_inclusive": 0.75 + } + }, + "horizontal_radius_factor": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1, + "min_inclusive": 0.75 + } + }, + "thickness": { + "type": "minecraft:trapezoid", + "value": { + "max": 6, + "min": 0, + "plateau": 2 + } + }, + "vertical_radius_center_factor": 0, + "vertical_radius_default_factor": 1, + "width_smoothness": 3 + }, + "vertical_rotation": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.125, + "min_inclusive": -0.125 + } + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 67 + }, + "min_inclusive": { + "absolute": 10 + } + }, + "yScale": 3 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/cave.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/cave.json new file mode 100644 index 0000000..468afa6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/cave.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:crimson_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": -0.4, + "min_inclusive": -1 + } + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.4, + "min_inclusive": 0.7 + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.15, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.3, + "min_inclusive": 0.8 + } + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 180 + }, + "min_inclusive": { + "above_bottom": 168 + } + }, + "yScale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.4, + "min_inclusive": 0.1 + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/cave_extra_underground.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/cave_extra_underground.json new file mode 100644 index 0000000..be117fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/cave_extra_underground.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:oak_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": -0.4, + "min_inclusive": -1 + } + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.4, + "min_inclusive": 0.7 + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.07, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.3, + "min_inclusive": 0.8 + } + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 87 + }, + "min_inclusive": { + "above_bottom": 80 + } + }, + "yScale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.1, + "min_inclusive": 0 + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/insane.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/insane.json new file mode 100644 index 0000000..de16a71 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/insane.json @@ -0,0 +1,72 @@ +{ + "type": "minecraft:canyon", + "config": { + "probability": 0.05, + "y": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 15 + }, + "max_inclusive": { + "absolute": 78 + } + }, + "yScale": 4, + "lava_level": { + "above_bottom": 8 + }, + "replaceable": "#minecraft:overworld_carver_replaceables", + "debug_settings": { + "air_state": { + "Name": "minecraft:air" + }, + "water_state": { + "Name": "minecraft:water", + "Properties": { + "level": "12" + } + }, + "lava_state": { + "Name": "minecraft:lava" + }, + "barrier_state": { + "Name": "minecraft:glass" + } + }, + "vertical_rotation": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": -0.125, + "max_exclusive": 0.125 + } + }, + "shape": { + "distance_factor": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0.6, + "max_exclusive": 1.5 + } + }, + "thickness": { + "type": "minecraft:trapezoid", + "value": { + "min": 0, + "max": 7, + "plateau": 3 + } + }, + "width_smoothness": 3, + "horizontal_radius_factor": { + "type": "minecraft:trapezoid", + "value": { + "min": 0, + "max": 5, + "plateau": 1 + } + }, + "vertical_radius_default_factor": 1.2, + "vertical_radius_center_factor": 0.4 + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/nether_cave.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/nether_cave.json new file mode 100644 index 0000000..a8ba491 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_carver/nether_cave.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:nether_cave", + "config": { + "floor_level": -0.7, + "horizontal_radius_multiplier": 1, + "lava_level": { + "above_bottom": 10 + }, + "probability": 0.2, + "replaceable": "#minecraft:nether_carver_replaceables", + "vertical_radius_multiplier": 1, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 1 + }, + "min_inclusive": { + "absolute": 0 + } + }, + "yScale": 0.5 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/calcite_rim.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/calcite_rim.json new file mode 100644 index 0000000..48996e4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/calcite_rim.json @@ -0,0 +1,26 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:budding_amethyst" + }, + "rim": { + "Name": "minecraft:calcite" + }, + "size": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 3 + } + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/hanging_crystals.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/hanging_crystals.json new file mode 100644 index 0000000..2a702b3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/hanging_crystals.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block_column", + "config": { + "direction": "down", + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "prioritize_tip": true, + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "weight": 1, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 4 + } + } + }, + { + "weight": 2, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + } + }, + { + "weight": 4, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + } + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:budding_amethyst" + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:amethyst_block" + } + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:amethyst_cluster", + "Properties": { + "waterlogged": "false", + "facing": "down" + } + } + } + } + ] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_ceiling.json new file mode 100644 index 0000000..c78778d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_ceiling.json @@ -0,0 +1,108 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "ceiling", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.9, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 8, + "max_inclusive": 12 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:amethyst_block" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:amethyst_cluster", + "Properties": { + "facing": "down", + "waterlogged": "false" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:large_amethyst_bud", + "Properties": { + "facing": "down", + "waterlogged": "false" + } + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:medium_amethyst_bud", + "Properties": { + "facing": "down", + "waterlogged": "false" + } + } + }, + { + "weight": 4, + "data": { + "Name": "minecraft:small_amethyst_bud", + "Properties": { + "facing": "down", + "waterlogged": "false" + } + } + }, + { + "weight": 5, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "10", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_floor.json new file mode 100644 index 0000000..d874548 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/amethyst_caves/patch_floor.json @@ -0,0 +1,108 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.9, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 8, + "max_inclusive": 12 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:amethyst_block" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:amethyst_cluster", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:large_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:medium_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + } + }, + { + "weight": 4, + "data": { + "Name": "minecraft:small_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + } + }, + { + "weight": 5, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "10", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/bedrock.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/bedrock.json new file mode 100644 index 0000000..1cc72b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/bedrock.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:geode", + "config": { + "blocks": { + "filling_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bedrock" + } + }, + "inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bedrock" + } + }, + "alternate_inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bedrock" + } + }, + "middle_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bedrock" + } + }, + "outer_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bedrock" + } + }, + "inner_placements": [ + { + "Name": "minecraft:bedrock" + } + ], + "cannot_replace": "#infinity_cave:all_but_base", + "invalid_blocks": "#minecraft:geode_invalid_blocks" + }, + "layers": { + "filling": 25, + "inner_layer": 25, + "middle_layer": 25, + "outer_layer": 25 + }, + "crack": { + "generate_crack_chance": 0 + }, + "noise_multiplier": 0.0, + "use_potential_placements_chance": 0.35, + "use_alternate_layer0_chance": 0.083, + "placements_require_layer0_alternate": true, + "outer_wall_distance": 1, + "distribution_points": 5, + "point_offset": 0, + "min_gen_offset": 0, + "max_gen_offset": 15, + "invalid_blocks_threshold": 999 + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deep_dark/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deep_dark/patch_floor.json new file mode 100644 index 0000000..72a4066 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deep_dark/patch_floor.json @@ -0,0 +1,80 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 8 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.33, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 10 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:sculk" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:deepslate" + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:sculk_vein", + "Properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "7", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/cobwebs.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/cobwebs.json new file mode 100644 index 0000000..c84ca62 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/cobwebs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:cobweb" + } + } + ] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_ceiling.json new file mode 100644 index 0000000..81ecb5c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_ceiling.json @@ -0,0 +1,80 @@ +{ + "type": "minecraft:block_column", + "config": { + "direction": "down", + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "prioritize_tip": true, + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "weight": 3, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 4 + } + } + }, + { + "weight": 2, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + } + }, + { + "weight": 4, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 6 + } + } + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:calcite" + } + } + ] + } + }, + { + "height": 2, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:diorite_wall", + "Properties": { + "waterlogged": "false", + "up": "true", + "west": "none", + "south": "none", + "north": "none", + "east": "none" + } + } + } + } + ] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_floor.json new file mode 100644 index 0000000..3e5f4ac --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/patch_floor.json @@ -0,0 +1,79 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 8 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.33, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 10 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:blackstone" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:blackstone_slab", + "Properties": { + "waterlogged": "false", + "type": "bottom" + } + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:light", + "Properties": { + "waterlogged": "false", + "level": "7" + } + } + } + ] + } + } + }, + "placement": [] + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/replace.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/replace.json new file mode 100644 index 0000000..28ac839 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/deeprock_caverns/replace.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 12, + "max_inclusive": 12 + } + }, + "state": { + "Name": "minecraft:calcite" + }, + "target": { + "Name": "minecraft:basalt" + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/depths.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/depths.json new file mode 100644 index 0000000..f76f21f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/depths.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:geode", + "config": { + "blocks": { + "filling_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "alternate_inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "middle_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "outer_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "inner_placements": [ + { + "Name": "minecraft:air" + } + ], + "cannot_replace": "#infinity_cave:all_but_lava", + "invalid_blocks": "#minecraft:geode_invalid_blocks" + }, + "layers": { + "filling": 25, + "inner_layer": 25, + "middle_layer": 25, + "outer_layer": 25 + }, + "crack": { + "generate_crack_chance": 0 + }, + "noise_multiplier": 0.0, + "use_potential_placements_chance": 0.35, + "use_alternate_layer0_chance": 0.083, + "placements_require_layer0_alternate": true, + "outer_wall_distance": 1, + "distribution_points": 5, + "point_offset": 0, + "min_gen_offset": 0, + "max_gen_offset": 15, + "invalid_blocks_threshold": 999 + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/frozen_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/frozen_caves/delta.json new file mode 100644 index 0000000..ec58c23 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/frozen_caves/delta.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:ice", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:blue_ice" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 3, + "min_inclusive": 2 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 12, + "min_inclusive": 2 + } + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_ceiling.json new file mode 100644 index 0000000..51ac2b3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_ceiling.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:block_column", + "config": { + "direction": "down", + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "prioritize_tip": true, + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "weight": 3, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 6 + } + } + }, + { + "weight": 2, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 4 + } + } + }, + { + "weight": 4, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 9 + } + } + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:light_blue_stained_glass" + } + } + ] + } + }, + { + "height": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 4 + } + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:light_blue_stained_glass_pane", + "Properties": { + "waterlogged": "false", + "west": "true", + "south": "true", + "north": "true", + "east": "true" + } + } + } + } + ] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_floor.json new file mode 100644 index 0000000..3edcb6a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/frozen_caves/patch_floor.json @@ -0,0 +1,77 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 8 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.33, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 10 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:ice" + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:tube_coral", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "10", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/big_pillar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/big_pillar.json new file mode 100644 index 0000000..a5f7ff8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/big_pillar.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:large_dripstone", + "config": { + "column_radius": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 14, + "min_inclusive": 5 + } + }, + "floor_to_ceiling_search_range": 45, + "height_scale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1, + "min_inclusive": 0.25 + } + }, + "max_column_radius_to_cave_height_ratio": 0.5, + "min_bluntness_for_wind": 0.8, + "min_radius_for_wind": 4, + "stalactite_bluntness": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1, + "min_inclusive": 0.4 + } + }, + "stalagmite_bluntness": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.0, + "min_inclusive": 0.5 + } + }, + "wind_speed": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.4, + "min_inclusive": 0.05 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ceiling.json new file mode 100644 index 0000000..056c77c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ceiling.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "ceiling", + "depth": 3, + "vertical_range": 1, + "extra_bottom_block_chance": 0.1, + "extra_edge_column_chance": 0.1, + "vegetation_chance": 0.5, + "xz_radius": 3, + "replaceable": "#infinity_cave:pillar_go_through", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 7, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:gravel", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:gravel" + } + }, + { + "weight": 6, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + } + } + }, + "placement": [] + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/delta.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/delta.json new file mode 100644 index 0000000..b13173f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/delta.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:deepslate" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 5, + "min_inclusive": 2 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/lava_path.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/lava_path.json new file mode 100644 index 0000000..85ed025 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/lava_path.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 7 + } + }, + "state": { + "Name": "minecraft:deepslate" + }, + "target": { + "Name": "minecraft:lava" + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/copper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/copper.json new file mode 100644 index 0000000..312d1ec --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/copper.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 20, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_copper_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/diamond.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/diamond.json new file mode 100644 index 0000000..491ee9b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/diamond.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 5, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_diamond_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/emerald.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/emerald.json new file mode 100644 index 0000000..8e90259 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/emerald.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 12, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_emerald_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/gold.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/gold.json new file mode 100644 index 0000000..e312079 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/gold.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 12, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_gold_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/iron.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/iron.json new file mode 100644 index 0000000..77bbf41 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/iron.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_iron_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/lapis.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/lapis.json new file mode 100644 index 0000000..35b8846 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/lapis.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 10, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_lapis_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/redstone.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/redstone.json new file mode 100644 index 0000000..b1b554c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/ores/redstone.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 12, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + }, + "state": { + "Name": "minecraft:deepslate_redstone_ore" + } + } + ] + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/pile.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/pile.json new file mode 100644 index 0000000..f40f0f1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/pile.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:gravel" + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:cobblestone" + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:cobbled_deepslate" + } + } + ] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/pillar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/pillar.json new file mode 100644 index 0000000..149472a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/pillar.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "ceiling", + "depth": 86, + "vertical_range": 1, + "extra_bottom_block_chance": 0.1, + "extra_edge_column_chance": 0.1, + "vegetation_chance": 0.95, + "xz_radius": 1, + "replaceable": "#infinity_cave:all_but_base", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:deepslate" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:tuff" + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:basalt_pillar", + "config": {} + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/replace.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/replace.json new file mode 100644 index 0000000..022349b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/replace.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 12, + "max_inclusive": 12 + } + }, + "state": { + "Name": "minecraft:deepslate" + }, + "target": { + "Name": "minecraft:dripstone_block" + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/rock.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/rock.json new file mode 100644 index 0000000..f5e873a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/rock.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:forest_rock", + "config": { + "state": { + "Name": "minecraft:deepslate" + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/small_pillar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/small_pillar.json new file mode 100644 index 0000000..a766095 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/generic/small_pillar.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:large_dripstone", + "config": { + "column_radius": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 9, + "min_inclusive": 3 + } + }, + "floor_to_ceiling_search_range": 25, + "height_scale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1, + "min_inclusive": 0.4 + } + }, + "max_column_radius_to_cave_height_ratio": 0.33, + "min_bluntness_for_wind": 0.6, + "min_radius_for_wind": 4, + "stalactite_bluntness": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.9, + "min_inclusive": 0.3 + } + }, + "stalagmite_bluntness": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.0, + "min_inclusive": 0.4 + } + }, + "wind_speed": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.3, + "min_inclusive": 0.0 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/delta.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/delta.json new file mode 100644 index 0000000..8428b8b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/delta.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:deepslate" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 7, + "min_inclusive": 3 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/hanging_roots.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/hanging_roots.json new file mode 100644 index 0000000..2bb0d34 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/hanging_roots.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:hanging_roots", + "Properties": { + "waterlogged": "false" + } + } + } + ] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_ceiling.json new file mode 100644 index 0000000..8e67bdf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_ceiling.json @@ -0,0 +1,114 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "ceiling", + "depth": 10, + "vertical_range": 1, + "extra_bottom_block_chance": 0.1, + "extra_edge_column_chance": 0.1, + "vegetation_chance": 0.75, + "xz_radius": 1, + "replaceable": "#infinity_cave:all_but_lava", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:block_column", + "config": { + "direction": "down", + "allowed_placement": { + "type": "minecraft:true" + }, + "prioritize_tip": true, + "layers": [ + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "base", + "waterlogged": "false", + "vertical_direction": "down" + } + } + } + }, + { + "height": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "vertical_direction": "down", + "thickness": "middle", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "false" + } + } + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "waterlogged": "false", + "vertical_direction": "down", + "thickness": "tip_merge" + } + } + } + ] + } + } + ] + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_floor.json new file mode 100644 index 0000000..f893a98 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/patch_floor.json @@ -0,0 +1,114 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": 10, + "vertical_range": 1, + "extra_bottom_block_chance": 0.1, + "extra_edge_column_chance": 0.1, + "vegetation_chance": 0.75, + "xz_radius": 1, + "replaceable": "#infinity_cave:all_but_lava", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:block_column", + "config": { + "direction": "up", + "allowed_placement": { + "type": "minecraft:true" + }, + "prioritize_tip": true, + "layers": [ + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "base", + "waterlogged": "false", + "vertical_direction": "up" + } + } + } + }, + { + "height": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "vertical_direction": "up", + "thickness": "middle", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "false" + } + } + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "waterlogged": "false", + "vertical_direction": "up", + "thickness": "tip_merge" + } + } + } + ] + } + } + ] + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/pebbles.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/pebbles.json new file mode 100644 index 0000000..fd05fa7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/limestone_grotto/pebbles.json @@ -0,0 +1,64 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:stone_button", + "Properties": { + "facing": "north", + "face": "floor", + "powered": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:stone_button", + "Properties": { + "facing": "south", + "face": "floor", + "powered": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:stone_button", + "Properties": { + "facing": "east", + "face": "floor", + "powered": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "8", + "waterlogged": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:stone_button", + "Properties": { + "facing": "west", + "face": "floor", + "powered": "false" + } + } + } + ] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/molten_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/molten_caves/delta.json new file mode 100644 index 0000000..255f356 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/molten_caves/delta.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:magma_block" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 3, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 5, + "min_inclusive": 2 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_ceiling.json new file mode 100644 index 0000000..0a75d06 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_ceiling.json @@ -0,0 +1,110 @@ +{ + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction": "down", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 19, + "min_inclusive": 0 + } + }, + "weight": 2 + }, + { + "data": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 2, + "min_inclusive": 0 + } + }, + "weight": 3 + }, + { + "data": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 6, + "min_inclusive": 0 + } + }, + "weight": 10 + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:weeping_vines_plant", + "Properties": { + "berries": "false" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:weeping_vines_plant", + "Properties": { + "berries": "true" + } + }, + "weight": 1 + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:randomized_int_state_provider", + "property": "age", + "source": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:weeping_vines", + "Properties": { + "age": "0" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:weeping_vines", + "Properties": { + "age": "0" + } + }, + "weight": 1 + } + ] + }, + "values": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 25, + "min_inclusive": 23 + } + } + } + } + ], + "prioritize_tip": true + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_floor.json new file mode 100644 index 0000000..ea50931 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/molten_caves/patch_floor.json @@ -0,0 +1,86 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 1 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0, + "extra_edge_column_chance": 0, + "vegetation_chance": 1, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 10 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:orange_concrete" + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:magma_block", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:fire_coral", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "10", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/nothing.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/nothing.json new file mode 100644 index 0000000..9f67c59 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/nothing.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:no_op", + "config": {} + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/spawn_detection.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/spawn_detection.json new file mode 100644 index 0000000..57548cd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/spawn_detection.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:void_air" + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/bush.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/bush.json new file mode 100644 index 0000000..1527778 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/bush.json @@ -0,0 +1,60 @@ +{ + "type": "minecraft:tree", + "config": { + "ignore_vines": true, + "force_dirt": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "dirt_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_block" + } + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bamboo_block", + "Properties": { + "axis": "y" + } + } + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "trunk_placer": { + "type": "minecraft:bending_trunk_placer", + "base_height": 1, + "height_rand_a": 3, + "height_rand_b": 2, + "bend_length": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 3 + } + }, + "min_height_for_leaves": 1 + }, + "foliage_placer": { + "type": "minecraft:bush_foliage_placer", + "radius": 3, + "offset": 2, + "height": 1 + }, + "decorators": [] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/delta.json new file mode 100644 index 0000000..d2f5e98 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/delta.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:green_concrete" + }, + "rim_size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + "size": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 12, + "min_inclusive": 6 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling.json new file mode 100644 index 0000000..106fc9f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling.json @@ -0,0 +1,86 @@ +{ + "type": "minecraft:block_column", + "config": { + "direction": "down", + "allowed_placement": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "prioritize_tip": true, + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "weight": 3, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 5 + } + } + }, + { + "weight": 2, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 3 + } + } + }, + { + "weight": 4, + "data": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 7 + } + } + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 3, + "data": { + "Name": "minecraft:sunflower", + "Properties": { + "half": "lower" + } + } + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:sunflower" + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:spore_blossom" + } + } + ] + } + } + ] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling2.json new file mode 100644 index 0000000..0cc95d1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_ceiling2.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:vine", + "Properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_floor.json new file mode 100644 index 0000000..bffe0dc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/patch_floor.json @@ -0,0 +1,131 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "vertical_range": 1, + "extra_bottom_block_chance": 0.5, + "extra_edge_column_chance": 1, + "vegetation_chance": 1, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 15, + "max_inclusive": 15 + } + }, + "replaceable": "#minecraft:base_stone_overworld", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:moss_block" + } + } + ] + }, + "vegetation_feature": { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 2, + "data": { + "Name": "minecraft:small_dripleaf", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 4, + "data": { + "Name": "minecraft:dandelion", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 12, + "data": { + "Name": "minecraft:short_grass", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 10, + "data": { + "Name": "minecraft:fern", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:torchflower", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:blue_orchid", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:pitcher_plant", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:rose_bush", + "Properties": { + "waterlogged": "false" + } + } + }, + { + "weight": 6, + "data": { + "Name": "minecraft:light", + "Properties": { + "level": "7", + "waterlogged": "false" + } + } + } + ] + } + } + }, + "placement": [] + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/replace.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/replace.json new file mode 100644 index 0000000..dfe9ca1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/replace.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 6, + "max_inclusive": 12 + } + }, + "state": { + "Name": "minecraft:moss_block" + }, + "target": { + "Name": "minecraft:deepslate" + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/tree.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/tree.json new file mode 100644 index 0000000..d79f346 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/tree.json @@ -0,0 +1,103 @@ +{ + "type": "minecraft:tree", + "config": { + "ignore_vines": true, + "force_dirt": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "dirt_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_block" + } + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bamboo_block", + "Properties": { + "axis": "y" + } + } + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "trunk_placer": { + "type": "minecraft:giant_trunk_placer", + "base_height": 7, + "height_rand_a": 3, + "height_rand_b": 2 + }, + "foliage_placer": { + "type": "minecraft:acacia_foliage_placer", + "radius": 3, + "offset": 0 + }, + "decorators": [ + { + "type": "minecraft:trunk_vine" + }, + { + "type": "minecraft:attached_to_leaves", + "probability": 0.3, + "exclusion_radius_xz": 2, + "exclusion_radius_y": 4, + "required_empty_blocks": 1, + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 5, + "data": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + { + "weight": 5, + "data": { + "Name": "minecraft:vine", + "Properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + } + }, + { + "weight": 1, + "data": { + "Name": "minecraft:cave_vines_plant", + "Properties": { + "berries": "true" + } + } + } + ] + }, + "directions": [ + "down" + ] + } + ] + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/vegetation.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/vegetation.json new file mode 100644 index 0000000..51bc307 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/configured_feature/sulfide_caves/vegetation.json @@ -0,0 +1,56 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "surface": "floor", + "depth": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "vertical_range": 5, + "extra_bottom_block_chance": 0, + "extra_edge_column_chance": 0.5, + "vegetation_chance": 0.5, + "xz_radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 6 + } + }, + "replaceable": "#infinity_cave:all_but_lava", + "ground_state": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "weight": 1, + "data": { + "Name": "minecraft:green_concrete" + } + }, + { + "weight": 3, + "data": { + "Name": "minecraft:moss_block" + } + }, + { + "weight": 2, + "data": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + ] + }, + "vegetation_feature": { + "feature": "minecraft:moss_vegetation", + "placement": [] + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/big_cave.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/big_cave.json new file mode 100644 index 0000000..bae5a05 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/big_cave.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:cache_all_in_cell", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 10, + "to_y": -96, + "from_value": 2, + "to_value": 0.4 + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_2", + "xz_scale": 0.4, + "y_scale": 2.8 + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "rarity_value_mapper": "type_2", + "noise": "minecraft:erosion", + "input": { + "type": "minecraft:interpolated", + "argument": -0.9 + } + }, + "argument2": { + "type": "minecraft:interpolated", + "argument": 0.5 + } + } + } + } + }, + "argument2": 0 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/entrances.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/entrances.json new file mode 100644 index 0000000..043c835 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/entrances.json @@ -0,0 +1,83 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.37, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_entrance", + "xz_scale": 0.75, + "y_scale": 0.5 + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.3, + "from_y": -63, + "to_value": 0.0, + "to_y": 20 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": "infinity_cave:caves/spaghetti_roughness_function", + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "noise": "minecraft:spaghetti_3d_1", + "rarity_value_mapper": "type_1" + }, + "argument2": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "noise": "minecraft:spaghetti_3d_2", + "rarity_value_mapper": "type_1" + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0765, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.011499999999999996, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "max": 1.0, + "min": -1.0 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/noodle.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/noodle.json new file mode 100644 index 0000000..fed99bc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/noodle.json @@ -0,0 +1,94 @@ +{ + "type": "minecraft:range_choice", + "input": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": -64.0, + "min_inclusive": -124.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle", + "xz_scale": 0.25, + "y_scale": 0.2 + }, + "when_out_of_range": -1.0 + } + }, + "max_exclusive": 0.0, + "min_inclusive": -1000000.0, + "when_in_range": 64.0, + "when_out_of_range": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": -64.0, + "min_inclusive": -124.0, + "when_in_range": { + "type": "minecraft:add", + "argument1": -0.07500000000000001, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.055, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_thickness", + "xz_scale": 0.25, + "y_scale": 0.2 + } + } + }, + "when_out_of_range": 0.0 + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 3.5, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": -64.0, + "min_inclusive": -124.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_a", + "xz_scale": 0.6666666666666665, + "y_scale": 0.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": -64.0, + "min_inclusive": -124.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_b", + "xz_scale": 0.6666666666666665, + "y_scale": 0.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + } + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/pillars.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/pillars.json new file mode 100644 index 0000000..ef84930 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/pillars.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 2.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar", + "xz_scale": 25.0, + "y_scale": 0.3 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_rareness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": 0.55, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.55, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d.json new file mode 100644 index 0000000..f90c0bb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:clamp", + "input": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_modulator", + "xz_scale": 0.19, + "y_scale": 0.12 + }, + "noise": "infinity_cave:infinity_cave", + "rarity_value_mapper": "type_2" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.123, + "argument2": "infinity_cave:caves/spaghetti_2d_thickness_modulator" + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0, + "argument2": { + "type": "minecraft:mul", + "argument1": 10, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_elevation", + "xz_scale": 0.76, + "y_scale": 0.34 + } + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_y": -128, + "to_y": -56, + "from_value": 10, + "to_value": -10 + } + } + }, + "argument2": "infinity_cave:caves/spaghetti_2d_thickness_modulator" + } + } + }, + "max": 2.0, + "min": -2.0 +} + diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_other.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_other.json new file mode 100644 index 0000000..7d5f880 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_other.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:clamp", + "input": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_modulator", + "xz_scale": 4.2, + "y_scale": 3.5 + }, + "noise": "minecraft:spaghetti_2d", + "rarity_value_mapper": "type_1" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.083, + "argument2": "infinity_cave:caves/spaghetti_2d_thickness_modulator" + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": 8.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_elevation", + "xz_scale": 0.9, + "y_scale": 0.8 + } + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 8.0, + "from_y": -124, + "to_value": 290.0, + "to_y": 3 + } + } + }, + "argument2": "infinity_cave:caves/spaghetti_2d_thickness_modulator" + } + } + }, + "max": 1.0, + "min": -1.0 +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_thickness_modulator.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_thickness_modulator.json new file mode 100644 index 0000000..9e41e98 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_2d_thickness_modulator.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:add", + "argument1": -0.86, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.25000000000000003, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_thickness", + "xz_scale": 1.3, + "y_scale": 1.6 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_roughness_function.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_roughness_function.json new file mode 100644 index 0000000..60586ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/caves/spaghetti_roughness_function.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.075, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.4, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness_modulator", + "xz_scale": 1.65, + "y_scale": 1.75 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness", + "xz_scale": 1.65, + "y_scale": 1.75 + } + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/custom.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/custom.json new file mode 100644 index 0000000..3269e88 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/custom.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:cache_all_in_cell", + "argument": "infinity_cave:caves/spaghetti_2d" + }, + "argument2": { + "type": "minecraft:cache_all_in_cell", + "argument": "infinity_cave:erosion" + } + }, + "argument2": -0.05 +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/erosion.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/erosion.json new file mode 100644 index 0000000..2528220 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/erosion.json @@ -0,0 +1,42 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 50, + "to_y": -70, + "from_value": 1.5, + "to_value": 0.1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_thickness", + "xz_scale": 1, + "y_scale": 7.5 + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "rarity_value_mapper": "type_1", + "noise": "minecraft:patch", + "input": { + "type": "minecraft:interpolated", + "argument": 1 + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": 0.5 + } + } + } + } + }, + "argument2": 0.3 +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise.json new file mode 100644 index 0000000..84df248 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8, + "xz_factor": 100, + "xz_scale": 0.33, + "y_factor": 160, + "y_scale": 0.33 +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise2.json new file mode 100644 index 0000000..365a965 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/terrain/base_3d_noise2.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8, + "xz_factor": 90, + "xz_scale": 0.33, + "y_factor": 70, + "y_scale": 0.45 +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/terrain/sloped_cheese.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/terrain/sloped_cheese.json new file mode 100644 index 0000000..7758019 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/density_function/terrain/sloped_cheese.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:end_islands" + }, + "argument2": "infinity_cave:terrain/base_3d_noise" +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/noise/infinity_cave.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/noise/infinity_cave.json new file mode 100644 index 0000000..76e945f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/noise/infinity_cave.json @@ -0,0 +1,7 @@ +{ + "firstOctave": -7, + "amplitudes": [ + 0.95, + 0.95 + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/noise_settings/overworld.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/noise_settings/overworld.json new file mode 100644 index 0000000..1fee32c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/noise_settings/overworld.json @@ -0,0 +1,2553 @@ +{ + "sea_level": 63, + "disable_mob_generation": false, + "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": -128, + "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": { + "type": "minecraft:min", + "argument1": "minecraft:overworld/caves/noodle", + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -124, + "max_exclusive": -52, + "when_in_range": "infinity_cave:custom", + "when_out_of_range": 2 + } + } + }, + "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/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/calcite_rim.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/calcite_rim.json new file mode 100644 index 0000000..1de81ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/calcite_rim.json @@ -0,0 +1,17 @@ +{ + "feature": "infinity_cave:amethyst_caves/calcite_rim", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 8 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/hanging_crystals.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/hanging_crystals.json new file mode 100644 index 0000000..4664209 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/hanging_crystals.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:amethyst_caves/hanging_crystals", + "placement": [ + { + "type": "minecraft:count", + "count": 58 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_ceiling.json new file mode 100644 index 0000000..13e26d5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_ceiling.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:amethyst_caves/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "up", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_floor.json new file mode 100644 index 0000000..0813141 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:amethyst_caves/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patches.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patches.json new file mode 100644 index 0000000..5fe841e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/amethyst_caves/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:amethyst_block", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 75, + "weight": 2 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deep_dark/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deep_dark/patch_floor.json new file mode 100644 index 0000000..d6c251e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deep_dark/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:deep_dark/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 34 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -58 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/cobwebs.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/cobwebs.json new file mode 100644 index 0000000..5ae28fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/cobwebs.json @@ -0,0 +1,46 @@ +{ + "feature": "infinity_cave:deeprock_caverns/cobwebs", + "placement": [ + { + "type": "minecraft:count", + "count": 18 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -122 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_ceiling.json new file mode 100644 index 0000000..e245879 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_ceiling.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:deeprock_caverns/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 86 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_floor.json new file mode 100644 index 0000000..fa67f16 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:deeprock_caverns/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 34 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches.json new file mode 100644 index 0000000..f42447a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:blackstone", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 100, + "weight": 5 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_2.json new file mode 100644 index 0000000..2ff4334 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_2.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "state": { + "Name": "minecraft:coal_block", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 33, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_3.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_3.json new file mode 100644 index 0000000..e73b522 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/patches_3.json @@ -0,0 +1,52 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "state": { + "Name": "minecraft:calcite" + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 80, + "weight": 2 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/pillar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/pillar.json new file mode 100644 index 0000000..22997c8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/pillar.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:basalt_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": 180 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": -128 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/replace.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/replace.json new file mode 100644 index 0000000..f294b4c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/deeprock_caverns/replace.json @@ -0,0 +1,31 @@ +{ + "feature": "infinity_cave:deeprock_caverns/replace", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:count", + "count": 150 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -50 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_111.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_111.json new file mode 100644 index 0000000..bac7ddf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_111.json @@ -0,0 +1,12 @@ +{ + "feature": "infinity_cave:depths", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "absolute": -112 + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_127.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_127.json new file mode 100644 index 0000000..478a9ab --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_127.json @@ -0,0 +1,12 @@ +{ + "feature": "infinity_cave:depths", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "absolute": -122 + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_63.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_63.json new file mode 100644 index 0000000..93694c5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_63.json @@ -0,0 +1,12 @@ +{ + "feature": "infinity_cave:depths", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "absolute": -64 + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_79.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_79.json new file mode 100644 index 0000000..786ef53 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_79.json @@ -0,0 +1,12 @@ +{ + "feature": "infinity_cave:depths", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "absolute": -80 + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_95.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_95.json new file mode 100644 index 0000000..501eac4 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/depths_95.json @@ -0,0 +1,12 @@ +{ + "feature": "infinity_cave:depths", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "absolute": -96 + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/delta.json new file mode 100644 index 0000000..b4a2a5b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/delta.json @@ -0,0 +1,36 @@ +{ + "feature": "infinity_cave:frozen_caves/delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 20 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 16, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "#infinity_cave:all_but_lava" + } + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/ice_spike.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/ice_spike.json new file mode 100644 index 0000000..88e0023 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/ice_spike.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:pile_ice", + "placement": [ + { + "type": "minecraft:count", + "count": 240 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": -52 + }, + "min_inclusive": { + "above_bottom": -128 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_ceiling.json new file mode 100644 index 0000000..ef2409b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_ceiling.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:frozen_caves/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 92 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -122 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_floor.json new file mode 100644 index 0000000..0e8b085 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:frozen_caves/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches.json new file mode 100644 index 0000000..efb6816 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:packed_ice", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 33, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches_2.json new file mode 100644 index 0000000..6417f35 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/frozen_caves/patches_2.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "state": { + "Name": "minecraft:light_blue_concrete", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 163, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/big_pillar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/big_pillar.json new file mode 100644 index 0000000..6529884 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/big_pillar.json @@ -0,0 +1,40 @@ +{ + "feature": "infinity_cave:generic/big_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 5, + "max_inclusive": 16 + } + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -60 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "infinity_cave:all_but_unbreakable" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ceiling.json new file mode 100644 index 0000000..b26938d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ceiling.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:generic/ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 52 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/delta.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/delta.json new file mode 100644 index 0000000..5822e6e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/delta.json @@ -0,0 +1,36 @@ +{ + "feature": "infinity_cave:generic/delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 5 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -140 + }, + "max_inclusive": { + "absolute": -56 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 16, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "#infinity_cave:all_but_lava" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/lava_path.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/lava_path.json new file mode 100644 index 0000000..bc136ac --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/lava_path.json @@ -0,0 +1,31 @@ +{ + "feature": "infinity_cave:generic/lava_path", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:count", + "count": 180 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -127 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/copper.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/copper.json new file mode 100644 index 0000000..36a832b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/copper.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/copper", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 26 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/diamond.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/diamond.json new file mode 100644 index 0000000..c5d8eb0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/diamond.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/diamond", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 6 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/emerald.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/emerald.json new file mode 100644 index 0000000..c28549b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/emerald.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/emerald", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 16 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/gold.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/gold.json new file mode 100644 index 0000000..1471eef --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/gold.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/gold", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 12 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/iron.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/iron.json new file mode 100644 index 0000000..a8d0567 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/iron.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/iron", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 16 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/lapis.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/lapis.json new file mode 100644 index 0000000..b29f75d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/lapis.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/lapis", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 15 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/redstone.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/redstone.json new file mode 100644 index 0000000..457790c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/ores/redstone.json @@ -0,0 +1,25 @@ +{ + "feature": "infinity_cave:generic/ores/redstone", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 15 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -56 + } + } + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/pile.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/pile.json new file mode 100644 index 0000000..9332fc5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/pile.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:generic/pile", + "placement": [ + { + "type": "minecraft:count", + "count": 60 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/pillar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/pillar.json new file mode 100644 index 0000000..a80f5b8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/pillar.json @@ -0,0 +1,51 @@ +{ + "feature": "infinity_cave:generic/pillar", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:noise_based_count", + "noise_to_count_ratio": 1, + "noise_factor": 1, + "noise_offset": 0 + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -123 + }, + "max_inclusive": { + "absolute": -64 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "infinity_cave:all_but_unbreakable" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/replace.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/replace.json new file mode 100644 index 0000000..4cfbd37 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/replace.json @@ -0,0 +1,31 @@ +{ + "feature": "infinity_cave:generic/replace", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:count", + "count": 180 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -50 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/rock.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/rock.json new file mode 100644 index 0000000..2a53470 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/rock.json @@ -0,0 +1,36 @@ +{ + "feature": "infinity_cave:generic/rock", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 1 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -140 + }, + "max_inclusive": { + "absolute": -56 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 16, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "#infinity_cave:all_but_lava" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/small_pillar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/small_pillar.json new file mode 100644 index 0000000..e02bcc1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/generic/small_pillar.json @@ -0,0 +1,40 @@ +{ + "feature": "infinity_cave:generic/small_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "value": { + "max_inclusive": 36, + "min_inclusive": 10 + } + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -60 + }, + "min_inclusive": { + "above_bottom": -128 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "infinity_cave:all_but_unbreakable" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/delta.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/delta.json new file mode 100644 index 0000000..a32973b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/delta.json @@ -0,0 +1,36 @@ +{ + "feature": "infinity_cave:limestone_grotto/delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 12 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 16, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "#infinity_cave:all_but_lava" + } + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/hanging_roots.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/hanging_roots.json new file mode 100644 index 0000000..3b01eba --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/hanging_roots.json @@ -0,0 +1,46 @@ +{ + "feature": "infinity_cave:limestone_grotto/hanging_roots", + "placement": [ + { + "type": "minecraft:count", + "count": 100 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_ceiling.json new file mode 100644 index 0000000..e27cb0a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_ceiling.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:limestone_grotto/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_floor.json new file mode 100644 index 0000000..c784a63 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:limestone_grotto/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -123 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches.json new file mode 100644 index 0000000..13166a0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "state": { + "Name": "minecraft:dripstone_block" + }, + "target": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + }, + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 8 + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "weight": 1, + "data": 100 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_2.json new file mode 100644 index 0000000..c8da1b9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_2.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 3, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:brown_concrete", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 120, + "weight": 10 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_3.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_3.json new file mode 100644 index 0000000..6fec3cc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_3.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 4 + } + }, + "state": { + "Name": "minecraft:brown_concrete_powder", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 90, + "weight": 10 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_4.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_4.json new file mode 100644 index 0000000..7000707 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/patches_4.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 2, + "max_inclusive": 4 + } + }, + "state": { + "Name": "minecraft:andesite", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 90, + "weight": 10 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/pebbles.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/pebbles.json new file mode 100644 index 0000000..bbdbcbc --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/limestone_grotto/pebbles.json @@ -0,0 +1,46 @@ +{ + "feature": "infinity_cave:limestone_grotto/pebbles", + "placement": [ + { + "type": "minecraft:count", + "count": 155 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/basalt_pillar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/basalt_pillar.json new file mode 100644 index 0000000..ff3aacf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/basalt_pillar.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:basalt_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": 240 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": -50 + }, + "min_inclusive": { + "above_bottom": -128 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/delta.json new file mode 100644 index 0000000..2192690 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/delta.json @@ -0,0 +1,17 @@ +{ + "feature": "infinity_cave:molten_caves/delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 10 + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_ceiling.json new file mode 100644 index 0000000..f9bc5ed --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_ceiling.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:molten_caves/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 188 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_floor.json new file mode 100644 index 0000000..40494c8 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:molten_caves/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 35 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patches.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patches.json new file mode 100644 index 0000000..7ceff89 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:orange_concrete", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 33, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patches_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patches_2.json new file mode 100644 index 0000000..edc1a0f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/molten_caves/patches_2.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 3 + } + }, + "state": { + "Name": "minecraft:magma_block", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 33, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/nothing.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/nothing.json new file mode 100644 index 0000000..898de56 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/nothing.json @@ -0,0 +1,4 @@ +{ + "feature": "infinity_cave:nothing", + "placement": [] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/spawning.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/spawning.json new file mode 100644 index 0000000..390b5e1 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/spawning.json @@ -0,0 +1,52 @@ +{ + "feature": "infinity_cave:spawn_detection", + "placement": [ + { + "type": "minecraft:count", + "count": 88 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -60 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/bush.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/bush.json new file mode 100644 index 0000000..c689aa6 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/bush.json @@ -0,0 +1,50 @@ +{ + "feature": "infinity_cave:sulfide_caves/bush", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 2 + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:replaceable" + }, + { + "type": "minecraft:matching_blocks", + "offset": [ + 0, + 0, + 0 + ], + "blocks": [ + "minecraft:air", + "minecraft:void_air", + "minecraft:cave_air" + ] + }, + { + "type": "minecraft:matching_blocks", + "offset": [ + 0, + -1, + 0 + ], + "blocks": [ + "minecraft:moss_block", + "minecraft:green_terracotta", + "minecraft:deepslate" + ] + } + ] + } + }, + { + "type": "minecraft:biome" + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/delta.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/delta.json new file mode 100644 index 0000000..838b7bf --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/delta.json @@ -0,0 +1,36 @@ +{ + "feature": "infinity_cave:sulfide_caves/delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 30 + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 16, + "target_condition": { + "type": "minecraft:true" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "#infinity_cave:all_but_lava" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling.json new file mode 100644 index 0000000..f0facb0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:sulfide_caves/patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 188 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling2.json new file mode 100644 index 0000000..db69853 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_ceiling2.json @@ -0,0 +1,45 @@ +{ + "feature": "infinity_cave:sulfide_caves/patch_ceiling2", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -52 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 32, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_floor.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_floor.json new file mode 100644 index 0000000..4cc8d0c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patch_floor.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:sulfide_caves/patch_floor", + "placement": [ + { + "type": "minecraft:count", + "count": 35 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches.json new file mode 100644 index 0000000..8044a95 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 4, + "max_inclusive": 8 + } + }, + "state": { + "Name": "minecraft:moss_block", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 33, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches_2.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches_2.json new file mode 100644 index 0000000..b49969a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/patches_2.json @@ -0,0 +1,55 @@ +{ + "feature": { + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 1, + "max_inclusive": 2 + } + }, + "state": { + "Name": "minecraft:lime_concrete_powder", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:deepslate" + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 75, + "weight": 10 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/replace.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/replace.json new file mode 100644 index 0000000..c6a55a7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/replace.json @@ -0,0 +1,31 @@ +{ + "feature": "infinity_cave:sulfide_caves/replace", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:count", + "count": 120 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -121 + }, + "max_inclusive": { + "absolute": -55 + } + } + }, + { + "type": "minecraft:biome" + } + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/tree.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/tree.json new file mode 100644 index 0000000..61a10c3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/tree.json @@ -0,0 +1,50 @@ +{ + "feature": "infinity_cave:sulfide_caves/tree", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 1 + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:replaceable" + }, + { + "type": "minecraft:matching_blocks", + "offset": [ + 0, + 0, + 0 + ], + "blocks": [ + "minecraft:air", + "minecraft:void_air", + "minecraft:cave_air" + ] + }, + { + "type": "minecraft:matching_blocks", + "offset": [ + 0, + -1, + 0 + ], + "blocks": [ + "minecraft:moss_block", + "minecraft:green_terracotta", + "minecraft:deepslate" + ] + } + ] + } + }, + { + "type": "minecraft:biome" + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/vegetation.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/vegetation.json new file mode 100644 index 0000000..4794960 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/placed_feature/sulfide_caves/vegetation.json @@ -0,0 +1,41 @@ +{ + "feature": "infinity_cave:sulfide_caves/vegetation", + "placement": [ + { + "type": "minecraft:count", + "count": 140 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "above_bottom": -128 + }, + "max_inclusive": { + "absolute": -40 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:solid" + }, + "allowed_search_condition": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:air" + ] + } + }, + { + "type": "minecraft:biome" + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/amethyst_altar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/amethyst_altar.json new file mode 100644 index 0000000..1abf0ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/amethyst_altar.json @@ -0,0 +1,9 @@ +{ + "processors": [ + { + "processor_type": "minecraft:block_rot", + "integrity": 1 + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/dinosaur.json new file mode 100644 index 0000000..1abf0ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/dinosaur.json @@ -0,0 +1,9 @@ +{ + "processors": [ + { + "processor_type": "minecraft:block_rot", + "integrity": 1 + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/knuckle_trap.json new file mode 100644 index 0000000..1abf0ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/knuckle_trap.json @@ -0,0 +1,9 @@ +{ + "processors": [ + { + "processor_type": "minecraft:block_rot", + "integrity": 1 + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/sulfide_huts.json new file mode 100644 index 0000000..1abf0ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/processor_list/sulfide_huts.json @@ -0,0 +1,9 @@ +{ + "processors": [ + { + "processor_type": "minecraft:block_rot", + "integrity": 1 + } + ] + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/amethyst_altar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/amethyst_altar.json new file mode 100644 index 0000000..ce36b08 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/amethyst_altar.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:amethyst_caves" + ], + "step": "top_layer_modification", + "spawn_overrides": {}, + "terrain_adaptation": "beard_thin", + "start_pool": "infinity_cave:amethyst_altar", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/amethyst_geode.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/amethyst_geode.json new file mode 100644 index 0000000..09e467d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/amethyst_geode.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:amethyst_caves" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "bury", + "start_pool": "infinity_cave:amethyst_geode", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/deep_dark_temple.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/deep_dark_temple.json new file mode 100644 index 0000000..30a73e0 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/deep_dark_temple.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "minecraft:deep_dark" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "bury", + "start_pool": "infinity_cave:deep_dark_temple", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/dinosaur.json new file mode 100644 index 0000000..be4e1e3 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/dinosaur.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:deeprock_caverns" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "beard_box", + "start_pool": "infinity_cave:dinosaur", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/frozen_robot.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/frozen_robot.json new file mode 100644 index 0000000..c59f04a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/frozen_robot.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:frozen_caves" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "beard_box", + "start_pool": "infinity_cave:frozen_robot", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/knuckle_trap.json new file mode 100644 index 0000000..dfccd41 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/knuckle_trap.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:molten_caves" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "beard_thin", + "start_pool": "infinity_cave:knuckle_trap", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/limestone_houses.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/limestone_houses.json new file mode 100644 index 0000000..be9364a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/limestone_houses.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:limestone_grotto" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "beard_box", + "start_pool": "infinity_cave:limestone_houses", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/sulfide_huts.json new file mode 100644 index 0000000..7daebd5 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure/sulfide_huts.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:jigsaw", + "biomes": [ + "infinity_cave:sulfide_caves" + ], + "step": "underground_structures", + "spawn_overrides": {}, + "terrain_adaptation": "beard_box", + "start_pool": "infinity_cave:sulfide_huts", + "size": 1, + "start_height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -100 + }, + "max_inclusive": { + "absolute": -80 + } + }, + "max_distance_from_center": 1, + "use_expansion_hack": false + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/amethyst_altar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/amethyst_altar.json new file mode 100644 index 0000000..444dea2 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/amethyst_altar.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:amethyst_altar", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 1046624494, + "spacing": 20, + "separation": 7 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/amethyst_geode.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/amethyst_geode.json new file mode 100644 index 0000000..08d1084 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/amethyst_geode.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:amethyst_geode", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 94635984, + "spacing": 18, + "separation": 9 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/deep_dark_temple.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/deep_dark_temple.json new file mode 100644 index 0000000..e33753a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/deep_dark_temple.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:deep_dark_temple", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 656662444, + "spacing": 32, + "separation": 12 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/dinosaur.json new file mode 100644 index 0000000..8e9fd6f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/dinosaur.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:dinosaur", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 204662444, + "spacing": 20, + "separation": 7 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/frozen_robot.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/frozen_robot.json new file mode 100644 index 0000000..502d28b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/frozen_robot.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:frozen_robot", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 5046624494, + "spacing": 20, + "separation": 7 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/knuckle_trap.json new file mode 100644 index 0000000..5647027 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/knuckle_trap.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:knuckle_trap", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 142624494, + "spacing": 18, + "separation": 6 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/limestone_houses.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/limestone_houses.json new file mode 100644 index 0000000..29d27aa --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/limestone_houses.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:limestone_houses", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 95329636, + "spacing": 19, + "separation": 7 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/sulfide_huts.json new file mode 100644 index 0000000..d180c9c --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/structure_set/sulfide_huts.json @@ -0,0 +1,14 @@ +{ + "structures": [ + { + "structure": "infinity_cave:sulfide_huts", + "weight": 1 + } + ], + "placement": { + "type": "minecraft:random_spread", + "salt": 9592963, + "spacing": 20, + "separation": 7 + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/amethyst_altar.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/amethyst_altar.json new file mode 100644 index 0000000..9ad16eb --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/amethyst_altar.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:amethyst_altar", + "processors": "infinity_cave:amethyst_altar" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/amethyst_geode.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/amethyst_geode.json new file mode 100644 index 0000000..824a18b --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/amethyst_geode.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:amethyst_geode", + "processors": "infinity_cave:amethyst_altar" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/deep_dark_temple.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/deep_dark_temple.json new file mode 100644 index 0000000..f7e84c9 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/deep_dark_temple.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:deep_dark_temple", + "processors": "infinity_cave:dinosaur" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/dinosaur.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/dinosaur.json new file mode 100644 index 0000000..7225984 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/dinosaur.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:dinosaur", + "processors": "infinity_cave:dinosaur" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/frozen_robot.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/frozen_robot.json new file mode 100644 index 0000000..78c44ce --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/frozen_robot.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:frozen_robot", + "processors": "infinity_cave:amethyst_altar" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/knuckle_trap.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/knuckle_trap.json new file mode 100644 index 0000000..b26d92a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/knuckle_trap.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:knuckle_trap", + "processors": "infinity_cave:knuckle_trap" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/limestone_houses.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/limestone_houses.json new file mode 100644 index 0000000..10cd7ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/limestone_houses.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:limestone_houses", + "processors": "infinity_cave:sulfide_huts" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/sulfide_huts.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/sulfide_huts.json new file mode 100644 index 0000000..6c23d3e --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/template_pool/sulfide_huts.json @@ -0,0 +1,14 @@ +{ + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "location": "infinity_cave:sulfide_huts", + "processors": "infinity_cave:sulfide_huts" + } + } + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/world_preset/normal.json b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/world_preset/normal.json new file mode 100644 index 0000000..c0ddea7 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/infinity_cave/worldgen/world_preset/normal.json @@ -0,0 +1,36 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + }, + "settings": "infinity_cave:overworld" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/dimension/overworld.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/dimension/overworld.json new file mode 100644 index 0000000..e7ca72f --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/dimension/overworld.json @@ -0,0 +1,216594 @@ +{ + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "settings": "infinity_cave:overworld", + "biome_source": { + "type": "minecraft:multi_noise", + "biomes": [ + { + "biome": "infinity_cave:amethyst_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -0.274, + 2 + ], + "humidity": [ + -1, + -0.25 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "infinity_cave:limestone_grotto", + "parameters": { + "continentalness": [ + 0.25, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -2, + 2 + ], + "humidity": [ + 0.1, + 1 + ], + "offset": 0, + "temperature": [ + -0.5, + 0.5 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "infinity_cave:molten_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -2, + 0.175 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + 0.3, + 2 + ], + "weirdness": [ + -1, + 0.9333 + ] + } + }, + { + "biome": "infinity_cave:sulfide_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + 0.55, + 2 + ], + "offset": 0, + "temperature": [ + -1, + 0.4 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "infinity_cave:deeprock_caverns", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -0.4, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0.05, + "temperature": [ + -0.2, + 0.8 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "infinity_cave:frozen_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 1.1, + 2 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + -0.18 + ], + "offset": 0.0, + "temperature": [ + -2, + -0.28 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 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": 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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "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": [ + -0.01, + 0.4 + ], + "offset": 0 + } + }, + { + "biome": "minecraft:dripstone_caves", + "parameters": { + "continentalness": [ + 0.8, + 1 + ], + "depth": [ + 0.2, + 0.4 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:deep_dark", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": 1.1, + "erosion": [ + -2, + -0.375 + ], + "humidity": [ + -1, + 1 + ], + "offset": 0, + "temperature": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ] + } + }, + { + "biome": "minecraft:lush_caves", + "parameters": { + "continentalness": [ + -1, + 1 + ], + "depth": [ + 0.17, + 0.4 + ], + "erosion": [ + -1, + 1 + ], + "humidity": [ + 0.45, + 1 + ], + "offset": 0.05, + "temperature": [ + -1, + 0.3 + ], + "weirdness": [ + -1, + 0.5 + ] + } + } + ] + } + } + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/dimension_type/overworld.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/dimension_type/overworld.json new file mode 100644 index 0000000..6bb7e37 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/dimension_type/overworld.json @@ -0,0 +1,26 @@ +{ + "ultrawarm": false, + "natural": true, + "piglin_safe": false, + "respawn_anchor_works": false, + "bed_works": true, + "has_raids": true, + "has_skylight": true, + "has_ceiling": false, + "coordinate_scale": 1, + "ambient_light": 0, + "logical_height": 448, + "effects": "minecraft:overworld", + "infiniburn": "#minecraft:infiniburn_overworld", + "min_y": -128, + "height": 448, + "monster_spawn_light_level": { + "type": "minecraft:uniform", + "value": { + "min_inclusive": 0, + "max_inclusive": 7 + } + }, + "monster_spawn_block_light_limit": 0 + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/blocks/base_stone_overworld.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/blocks/base_stone_overworld.json new file mode 100644 index 0000000..dfa496a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/blocks/base_stone_overworld.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:tuff", + "minecraft:deepslate" + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/damage_type/bypasses_cooldown.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/damage_type/bypasses_cooldown.json new file mode 100644 index 0000000..5cf63ca --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/damage_type/bypasses_cooldown.json @@ -0,0 +1,6 @@ +{ + "values": [ + "infinity_cave:bypass", + "infinity_cave:magic_bypass" + ] + } \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/functions/load.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/functions/load.json new file mode 100644 index 0000000..dacbf7d --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/functions/load.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "infinity_cave:init" + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/worldgen/biome/all.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/worldgen/biome/all.json new file mode 100644 index 0000000..10edf38 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/worldgen/biome/all.json @@ -0,0 +1,9 @@ +{ + "values": [ + "infinity_cave:molten_caves", + "infinity_cave:sulfide_caves", + "infinity_cave:amethyst_caves", + "infinity_cave:frozen_caves", + "infinity_cave:deeprock_caverns" + ] +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json new file mode 100644 index 0000000..e96fa6a --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json @@ -0,0 +1,8 @@ +{ + "replace": true, + "values": [ + "stronghold", + "bastion_remnant", + "end_city" + ] +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/biome/deep_dark.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/biome/deep_dark.json new file mode 100644 index 0000000..76f8468 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/biome/deep_dark.json @@ -0,0 +1,111 @@ +{ + "carvers": { + "air": [] + }, + "downfall": 0.4, + "effects": { + "fog_color": 12638463, + "grass_color": 1457262, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.deep_dark" + }, + "sky_color": 7907327, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127", + "infinity_cave:spawning" + ], + [], + ["minecraft:amethyst_geode"], + ["minecraft:monster_room", "minecraft:monster_room_deep"], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "infinity_cave:generic/delta", + "infinity_cave:generic/rock", + "infinity_cave:generic/pillar", + "infinity_cave:generic/big_pillar", + "infinity_cave:generic/small_pillar", + "infinity_cave:generic/ores/iron", + "infinity_cave:generic/ores/copper", + "infinity_cave:generic/pile", + "infinity_cave:generic/ceiling", + "infinity_cave:generic/replace" + ], + [ + "minecraft:sculk_vein", + "minecraft:sculk_patch_deep_dark", + "infinity_cave:deep_dark/patch_floor" + ], + [], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane", + "minecraft:patch_pumpkin" + ], + ["minecraft:freeze_top_layer"] + ], + "has_precipitation": true, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "spawn_costs": {}, + "temperature": 0.8 +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/biome/lush_caves.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/biome/lush_caves.json new file mode 100644 index 0000000..666facd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/biome/lush_caves.json @@ -0,0 +1,190 @@ +{ + "carvers": { + "air": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ] + }, + "downfall": 0.5, + "effects": { + "fog_color": 12638463, + "mood_sound": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + }, + "music": { + "max_delay": 24000, + "min_delay": 12000, + "replace_current_music": false, + "sound": "minecraft:music.overworld.lush_caves" + }, + "sky_color": 8103167, + "water_color": 4159204, + "water_fog_color": 329011 + }, + "features": [ + [ + "infinity_cave:depths_63", + "infinity_cave:depths_79", + "infinity_cave:depths_95", + "infinity_cave:depths_111", + "infinity_cave:depths_127" + ], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_clay", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:lush_caves_ceiling_vegetation", + "minecraft:cave_vines", + "minecraft:lush_caves_clay", + "minecraft:lush_caves_vegetation", + "minecraft:rooted_azalea_tree", + "minecraft:spore_blossom", + "minecraft:classic_vines_cave_feature" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [ + { + "type": "minecraft:axolotl", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/configured_carver/cave.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/configured_carver/cave.json new file mode 100644 index 0000000..3d251ee --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/configured_carver/cave.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:crimson_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": -0.4, + "min_inclusive": -1 + } + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.4, + "min_inclusive": 0.7 + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.15, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.3, + "min_inclusive": 0.8 + } + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 180 + }, + "min_inclusive": { + "above_bottom": 167 + } + }, + "yScale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.4, + "min_inclusive": 0.1 + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/configured_carver/cave_extra_underground.json b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/configured_carver/cave_extra_underground.json new file mode 100644 index 0000000..be117fd --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/data/minecraft/worldgen/configured_carver/cave_extra_underground.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:oak_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": -0.4, + "min_inclusive": -1 + } + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.4, + "min_inclusive": 0.7 + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.07, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 1.3, + "min_inclusive": 0.8 + } + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 87 + }, + "min_inclusive": { + "above_bottom": 80 + } + }, + "yScale": { + "type": "minecraft:uniform", + "value": { + "max_exclusive": 0.1, + "min_inclusive": 0 + } + } + } +} diff --git a/src/main/resources/resourcepacks/infinity-cave/pack.mcmeta b/src/main/resources/resourcepacks/infinity-cave/pack.mcmeta new file mode 100644 index 0000000..4224844 --- /dev/null +++ b/src/main/resources/resourcepacks/infinity-cave/pack.mcmeta @@ -0,0 +1,14 @@ +{ + "pack": { + "pack_format": 15, + "supported_formats": { + "min_inclusive": 15, + "max_inclusive": 26 + }, + "description": { + "text": "Infinity Cave 0.4\nby Frozytime", + "color": "gold" + } + } + } + \ No newline at end of file diff --git a/src/main/resources/resourcepacks/infinity-cave/pack.png b/src/main/resources/resourcepacks/infinity-cave/pack.png new file mode 100644 index 0000000..9d04fd7 Binary files /dev/null and b/src/main/resources/resourcepacks/infinity-cave/pack.png differ